Dropbox is just about the best way to share files. I’ve tried things like source control, but to be honest, Dropbox just keeps things simple.
However, sometimes you need things like configuration files or data files to live in a particular space on disk, and Dropbox just doesn’t let you sync files in multiple places. Here’s how you can use symbolic links in windows to counterbalance that.
Here’s the example. I use some PowerShell scripts for building software. PowerShell scripts needs to live in
<my documents>\WindowsPowerShell
So, I store them in
<dropbox>\Apps\WindowsPowerShell
And then create a symbolic link using the mklink command, like this;
> mklink /j <my documents>\WindowsPowerShell <dropbox?\Apps\WindowsPowerShell
That is, you specify the new directory first, and the existing directory second. And that’ll give you a folder that appears to be outside dropbox, but which syncs using dropbox.
Now you can do that on multiple PCs and share any number of folders between any number of machines
Yes, this is a good hack. I use it for my IE Favorites folder (don’t hassle me ’cause I use IE please).
Good idea! As long as you’re not on IE8, you’ll hear no complaints from me. 🙂