4

Similar to How to synchronize directories outside the Google Drive directory but specific to OS X.

I have a folder in Application Support I want to be backed up on Google Drive. How can I make Google Drive add that folder as an extra thing to sync?

gak
  • 9,047

2 Answers2

3

Make a symlink tot that folder in your google driver folder.

cd ~/Google\ Drive
ln -s ~/Application\ Support

Edit: Google drive doesn't support symlinks, so one solution I see is:

  1. Boot in the recovery mode
  2. Move your application support folder to google drive
  3. Create a symlink to this folder in your home folder

Disclaimer: I didn't test it, but it should work.

UncleLaz
  • 146
2

Right now my solution is to rsync the two directories in a cronjob. e.g.:

rsync -r "/Users/gak/Library/Application Support/Sublime Text 2" "/Users/gak/Google Drive/Configuration/"

Unison is probably a better alternative to rsync in this case, since it can do a two way rsync.

gak
  • 9,047