Originally Posted by psylichon
Can you describe the process for setting up a symlink using WinSCP? I'm tired of jumping around between root and mobile directories.
Sorry for the late reply here, I didn't notice the quote until now.
Anyway, to make the symbolic link its pretty straight forward as follows:
ln -s Location TargetLocation
So if I would like to create a symlink that points to var/root/Downloads from my mobile directory I'd make the following command from WinSCPs little terminal window:
ln -s /var/root/Downloads /var/mobile/Downloads
Now heres the catch, lets say you already have a Downloads folder in var/mobile, what happens is the Symlink will be created inside that folder and basically not work, /var/mobile/Downloads/Downloads. Other than that, its pretty simple stuff.
You can delete the Symlink just like a normal folder through WinSCP or Mobile Finder without worry of also deleting the host directory. The host directory whill stay put as it should.