Open source folder to folder sync for Windows

1

I was wondering if there is open source project for windows based system were I could sync two folder within the same operating system.

I have done some jobs for clients with comercial versions of PeerSync and Double-Take but I find that some work that I do does not require lot of features thous two offer and I could manage with open source project in most cases, but I was not able to find one.

I'm not interested in build-in windows features that would do the job - just to avoid TIPS on how to do it.

The sync should be process always running and waiting for file system triggers. Sync should not have to be triggered manually.

user59725

Posted 2011-05-22T19:42:10.307

Reputation:

Do you really need "Open Source" or are you just looking for "Free"? – Ƭᴇcʜιᴇ007 – 2011-05-22T20:22:47.393

Open source since I would like to learn about the System API and triggers. – None – 2011-05-22T22:34:45.403

FindFirstChangeNotification http://msdn.microsoft.com/en-us/library/aa364417%28VS.85%29.aspx (native) and FileSystemWatcher http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx (.NET) is what you want.

– John T – 2011-05-23T23:22:06.587

Answers

2

This page lists:

But only FreeFileSynch appears to be open source and non-commercial.

Peter K.

Posted 2011-05-22T19:42:10.307

Reputation: 172

1

Check out PureSync. The free version has everything you're looking for and then some. Excellent software.

It features user-definable synchronization triggers, including an automatic sync upon file/folder modification. enter image description here

John T

Posted 2011-05-22T19:42:10.307

Reputation: 149 037