Robocopy - Help

Soldato
Joined
5 Jun 2005
Posts
20,887
Location
Southampton
Hello all,

i would like to copy local video to my NAS box and keep them in sync, however my current robo setup below is set to mirror which is fine, but the NAS box software adds info to the files so everytime i run the script it will copy the whole folder over. I want the script to run and only add new files

robocopy /e "D:\Video\Created Video" "\\SYNOLOGY\video\home video" /MIR /R:50
 
Sounds like you could just add /XC to exclude changed files.

And to check that without actually copying any new files, you could add /L to the end of the syntax to just "list only".

I always write out to a log file using /LOG+filename
 
I had issues with robocopy doing just this so i just went back to xcopy with the /d /e /s /y
switches and everything seem to copy and update just fine
 
You don't need /e and /MIR, they overlap..

Just use MIR

Also, if ALL files are being copied each time, try adding this..

/FFT

It's a fix that adds in a 2 second grace time difference to handle the different file system..

Is your Synology on the latest version?
 
Back
Top Bottom