Objective: To find all new files and subfolders under some root folder (let us say Documents) and to copy them to another 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 is created. Only new files copied, which is the way it's supposed to work. Good so far.
A point is that I do not want to create all subfolders on a target disk if there are no new files in them.
Results are acceptable, but there is a lot of work to go through all folders and to find new files, as well as to understand what subfolders are a new ones.