Page 1 of 1
Syncing between Mac and Windows using Dropbox
Posted: Mon Oct 29, 2012 10:51 pm
by IceCaps97
I have seen a thread about how to sync between 2 Windows platforms using Dropbox, but I need to know how to sync the save file on my Mac using dropbox so my Windows can use it. I already know how to make a link between my Windows save file and the one in Dropbox, but I don't know how to make a link between "~/Library/Application Support/FasterThanLight" and "~/Dropbox/FasterThanLight" on my Mac. Can anyone help?
Re: Syncing between Mac and Windows using Dropbox
Posted: Mon Oct 29, 2012 10:53 pm
by boa13
Possibly the following command, in a terminal:
Code: Select all
ln -s "~/Dropbox/FasterThanLight" "~/Library/Application Support/FasterThanLight"
This is untested, I don't have a Mac.
Re: Syncing between Mac and Windows using Dropbox
Posted: Mon Oct 29, 2012 11:00 pm
by IceCaps97
boa13 wrote:Possibly the following command, in a terminal:
Code: Select all
ln -s "~/Dropbox/FasterThanLight" "~/Library/Application Support/FasterThanLight"
This is untested, I don't have a Mac.
Well there's no error when I press enter so I assume it worked. Thanks.