Dropbox: Symbolic links on Windows

Dropbox is a neat little tool for automagically storing your data on the cloud and accessing them across different machines. At Qxf2 Services, we use a combination of Dropbox and Evernote to store and backup non-confidential data. I personally would use FolderGrid when I really *need* to share confidential files.

All files stored under your designated Dropbox folder are synched with the cloud. On Windows, if you want to synch folders without moving them into the designated folder, follow these steps:

1. Run command prompt as administrator
> Start > type ‘cmd’ > right click on command prompt and ‘Run as administrator’
run_as_administrator

2. Use the mklink command in your command prompt to create a symbolic link:
> mklink /d your_dropbox_folder\new_folder_name folder_you_want_to_synch
E.g.: To synch a folder called ‘C:\chess’ and your dropbox directory is ‘C:\dropbox’, run

mklink /d C:\dropbox\chess C:\chess

If the link was successful, you should see the message:
symbolic link created for C:\dropbox\chess <<===>> C:\chess

That’s it! Now your folder is automatically synched.

Leave a Reply

Your email address will not be published. Required fields are marked *