Copy directory structure without files
========= QUESTION --------- Can you copy over the directory structure from one folder to another without copying the files in those directories? ========= ANSWER --------- Use XCOPY from the Command Prompt using the /t and /e switches to include empty directories and subdirectories. See EXAMPLES ========= EXAMPLES ---------xcopy "Q:PRODDATAReports" "C:UsersmyUserDocumentsSubDirSystemsQReports" /t /e [...]