CMD: Copy folder structure without files

To copy folders structure without files can be achieved using xcopy command

xcopy “source_path” “destination_path” /t /e

where,

/t option specifies to create the folder structure, but without copying any files or empty subdirectories.

/e options is for include empty subdirectories

Please note : this is a windows command

One thought on “CMD: Copy folder structure without files

Leave a Reply

Your email address will not be published. Required fields are marked *