简体   繁体   中英

Create Empty Directory structure

I want to create empty directory structure in windows using cmd

any batch file?

can any one help me?

try this

echo Enter Source to be copied
set/p "sr=>"
echo Entr Destination
set/p "ds=>"
echo enter foldername in which structure to be created.
set/p "nm=>"
xcopy %sr% %ds%\%nm%\ /S /E /C /T /H
echo structure created succesfully.......

put in text file and save it as .bat extension

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM