Picasa stores very large files in Application Support folder which consumes limited disk space in system disk. I wonder if I can use symbolic links in order to make Picasa use removable disk as storage space.
Asked
Active
Viewed 386 times
1
-
I would think your App will crash once the removable disk is not connected. Is it a big issue? – Rob May 25 '14 at 08:13
-
Not a big problem – Mert Nuhoglu May 25 '14 at 08:24
1 Answers
3
Whilst I have no experience with Picasa, I have symlinked many other apps' Application Support folders to other destinations including network drives too without any problems. I ensure the drive is connected with a script before allowing the app to open, but I'm not sure if that's necessary. Generally speaking, it'll work fine.
┌── ln(1) link, ln -- make links
│ ┌── Create a symbolic link.
│ │ ┌── the path to the new folder
│ │ ┌─┴────────────────┐
ln -s ~/Library/Application\ Support/App /Volumes/MyDrive/App
└────────────┬───────────────────┘
└── the path to the original file/folder
can use . or ~ or other relative paths
Edited from my canonical linking answer at How can I create a symbolic link in Terminal?
-
Thank you. Could you please give an example on how to define such a symbolic link? – Mert Nuhoglu May 25 '14 at 08:26
-