-2

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?

bAN
  • 1,746
KdgDev
  • 5,518

3 Answers3

1

I believe what the original poster was referring to was the fact that RoboCopy does not copy the root folder / source folder, but rather only its contents.

More information can be found here: Robocopy does not copy the root folder and its time stamp

Rolo
  • 580
1

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.

1

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

hanleyp
  • 6,627