Robocopy to copy only new folders and files
- by Valery Shampal
A task:
To find all new files and subfolders under some root folder (let us say Documents) and to copy them to other disk (j: in this case)
Command line used:
robocopy c:\users\valery\documents j:\robocopy /XO /E /MAXAGE:20131030 /XD
Result: A full folders tree created. Only new files copyed, as supposed. It's good
A point is, that I…