up vote 0 down vote favorite
share [g+] share [fb]

How shall I put this...

It's like: you can tell robocopy: "move the contents of this map to that map".

But you can't say: "move that map to that map, no matter the contents"(to be content of that map)

Or can you?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

There is a GUI for Robocopy that makes it much easier to use outside the command line called RichCopy.

link|improve this answer
feedback

Robocopy by default should copy all contents, no matter what they are. If you mean recursively into all subdirectories, use /E:

robocopy C:\dir D:\backupdir /E

You can find a complete list of all available switches here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.