What is the MSDOS command to copy a whole folder to another folder?

Ph33zy

Senior member
Mar 5, 2000
944
0
76
Is there a way to copy a folder and all its subfolder to another location? I cant seem to find the command. THnaks guys
 

Abzstrak

Platinum Member
Mar 11, 2000
2,450
0
0
just do something like

xcopy *.* c:\newfold /s /e /h

/s does sub directories
/e does empty subs
/h does hidden files

just type xcopy /? and you'll see the switches