DOS Question please help
This is a discussion about DOS Question please help in the Windows Software category; Well yes, it's a very easy question for you guys. How do I copy a folder in DOS that has also more directories inside of it? When I try copy *. * it only copies files, but not folders. What is the answer? Thanks!.
Well yes, it's a very easy question for you guys.
How do I copy a folder in DOS that has also more directories inside of it?
When I try copy *.* it only copies files, but not folders.
What is the answer?
Thanks!
How do I copy a folder in DOS that has also more directories inside of it?
When I try copy *.* it only copies files, but not folders.
What is the answer?
Thanks!
Participate in our website and join the conversation
This subject has been archived. New comments and votes cannot be submitted.
Aug 17
Aug 17
0
<1 minute
Responses to this topic
Use xcopy or xcopy32
eg
xcopy c:\*.* d:\backup /E
/E switch specifies that it should copy all subdirectories and their contents
eg
xcopy c:\*.* d:\backup /E
/E switch specifies that it should copy all subdirectories and their contents