Reputation: 2228
I want to copy directories and their subdirectories from C: to D: with same name, but any of folders' name must not change.
Can you help me?
Thank you.
Upvotes: 0
Views: 3081
Reputation: 1036
Use the following command in your batch file
XCOPY source [destination] /E
Upvotes: 2