How to copy a directory structure without copying files?
Solution 1:
If you want to copy empty folders as well.
xcopy C:\Folders D:\Folders /t /e
Solution 2:
Yup. XCOPY
XCopy source {destination} /t
example
xcopy C:\Folders D:\Folders /t
more about xcopy can be found here http://ss64.com/nt/xcopy.html