Many ways to skin a cat!
Hi both of you,
The Alias method which 'VirtualRain' suggests is a great idea; I've actually done something similar with Dropbox (I forgot to mention the fixed directory nature of DB) :
I create symbolic links, using Terminal, in the Dropbox directory.
Now, if you're not familiar with Terminal this can be a scary thing, but I'll show you how easy it is, and then you can choose which method you'd like.
1) Start terminal (it's in Applications / Utilities)
For the sake of this explanation, the Dropbox directory is in my home directory (/Users/James/Dropbox), and the Directory I want to sync is called /Users/James/Documents/IT
2) First, in Terminal, 'go' to the Dropbox directory: (type the following exactly)
cd ~/Dropbox (the tilde key is to the left of the Z key!)
3) type 'ls -l' without the quotes to see all the files currently in Dropbox
4) To create the link from the 'IT' directory to Dropbox, type the following:
ln -s ~/Documents/IT IT
what this means is:
i) ln -s (create a symbolic link)
ii) ~/Documents/IT (from the directory /Documents/IT in my home directory)
iii) IT (to a linked file called IT in the current directory)
when this is done, again type 'ls -l' without the quotes, and you'll see the new file listed, a bit like this:
lrwxr-xr-x 1 James staff 26 13 Aug 16:56 IT -> /Users/James/Documents/IT/
...this shows that the file 'IT' is actually a link.
...and if you look at the dropbox icon if it's in the menubar, you'll see it's syncing.
If you ever want to stop syncing the directory, you can just delete the file in the Dropbox directory, and the original file will remain untouched.
Again, hope this helps. I'm watching this thread now, so let me know if anything's unclear.
All the best
James