1

I've got an application which stores its settings and other data in a specific folder on my hard drive. I cannot change this location without reverse-engineering the application.

I use the application on two computers at my home. I would like them both to share the same folder, so when I saved my data on one machine, it would become available on the other one. I know this will work because it works by simply copying the files, but that quickly gets tiresome and I would like a more elegant way, preferably with features built inside Windows. One of the machines is constantly online, so if I could somehow "redirect" the folder from the other machine to the shared folder on the first one, it would solve my problem.

Can this be done somehow?

Note - the constantly-online machine is running Windows XP Pro, and the other one (a laptop) is running Windows 7 Enterprise.

Kenster
  • 8,620
Vilx-
  • 4,237

2 Answers2

2

If your partitions are in NTFS, you could make a NTFS link between the folders, as explained in this other answer.

This will effectively make the same folder available in both places. Any change you make from one location will instantly happen in the other location, because both locations are actually the same folder.

The NTFS Link shell extensions will let you easily create and manage these junction points (and hard links also) from the Explorer context menu.

However this will most likely work only on one of the computers, the one which physically has the shared folder. I doubt you can do that to point on the shared drive.


Edit: Maybe you could combine this with NTFS symbolic links. Unlike a "junction", like the one created with the previous solution, this one allows you to point to network drives as well. The drawback is that it works only on Windows Vista and further versions.

So I guess you would have to make the shared folder on the XP machine (which is already the setting, after re-reading your question), make a junction, with the first solution, with your program folder, and then make a symlink from 7, to this shared folder.

Gnoupi
  • 8,188
2

You can use the freeware Allway Sync, which can sync both ways.

For syncing over the internet, see this article : Free Ways to Synchronize Folders Between Computers.
It describes how to automatically synchronize two folders using Microsoft's free FolderShare service.

harrymc
  • 498,455