Copy subdirectory structure WITHOUT copying subdirectory contents

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to copy a subdirectory structure from one directory to another
without copying the files in those subdirectories?
 
Using DOS, via the DOS window, you check out the "xcopy" command with

xcopy /?/P

And the command you need would be:

xcopy /T/E

with /T meaning copy the directory structure, and /E meaning including
subdirectories and empty one.

Frank
 
Back
Top