I want write a batch file that can copy a folder structure. This batch file would copy all folders in the source directory to the destination directory - the files themselves would not be copied.

For example, say there is a folder src with the following structure:

src
src\a\file1
src\a\file2
src\a\b\file1
src\c

The tool would create a dest folder like the following:

dest
dest\a
dets\a\b
dest\c

Is it possible to accomplish this task using a batch file?

link|improve this question
feedback

5 Answers

up vote 9 down vote accepted

Try:

XCopy "src" "dest" /T

Just make sure it's not cyclical.

To include empty directories, add /E:

XCopy "src" "dest" /T /E
link|improve this answer
It copies files too, I only want directory structure to be copied. – Szere Dyeri Sep 26 '09 at 0:23
First post is corrected. – Stevoni Sep 26 '09 at 0:35
2  
You can also add the /E switch which causes empty directories to be mirrored, too. – Joey Sep 26 '09 at 0:44
1  
+1 for a solution that doesn't involve installing 3rd party programs. – RJFalconer Sep 26 '09 at 1:37
Thanks, this just saved me a lot of time. – mindless.panda Jun 23 '11 at 12:13
feedback
robocopy src dest /e /create

This partially achieves what you need. It will copy the directory structure and create zero length files as placeholders for the actual files. See more details here.

link|improve this answer
feedback

not a batch file but Total Commander can do this (with a little trick):

copy a directory and use the 'Only files of this type' option. enter *.nonsense (or any other non-existent file extension) in this field.

now Total Commander will create the entire directory structure of the source folder at the destination without copying any files.

link|improve this answer
feedback

you can just put |*.* into Total commander copy dialog and the folder structure will be copied without files

link|improve this answer
feedback

Check 47 folders app , can create & copy folders structures in visual way..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.