[SOLVED] Recommendation on replication software

extatic

Reputable
Dec 6, 2015
12
0
4,510
Hi Guys,

I would like to regularly and automatically copy two folders from drive A to drive B and would appreciate some recommendations.
When coming the folders, i would like the output to be Foldername + date. This way the files are not overwritten constantly.

Karen's replicator works great, but doesn't do this date concatenate option.

Thanks
 
Solution
Write a script, that does it and schedule it.
The script would be target folder creation and launching robocopy process. Basically 2 lines of code.
mkdir b:\targetfolder%date%
robocopy a:\sourcefolder b:\targetfolder%date%