Program to sync two folders

dkm777

Senior member
Nov 21, 2010
528
0
0
Hi guys,

After setting up a Samba server I have a hard time finding a program that could sync two folders. Basically I have a folder on my hard drive and want it to be mirrored to my shared folder that I have mounted as a network drive. Right now I do "xcopy /Y /E", but it's time consuming as it copies everything and not just changed files. Also it's one way only. If I change something in the server I have to manually copy those files onto my box. A long time ago I used SyncToy for this purpose and as far as I remember I was satisfied with it. Best of all it was free. Is there anything like that nowadays?
 

Berryracer

Platinum Member
Oct 4, 2006
2,779
1
81
yes there is the free SyncBack and the improved SynbackSE and Synback Pro

I've used the free version for a while before upgrading it's sufficient to do all the basic things
 

stlcardinals

Senior member
Sep 15, 2005
729
0
76
For Hard drive at todays price, someone still using tape drive for backup?
Amazing!

For Enterprise backups, a tape library still does an effective job at a good price. Of course I have initial backups going to disk for faster initial recovery but use tape for long term retention.
 

sm625

Diamond Member
May 6, 2011
8,172
137
106
Right now I do "xcopy /Y /E", but it's time consuming as it copies everything and not just changed files.

try xcopy /d /e /y /v /c

The /d is the most important one since it will only copy newer files.