Create Empty Directory structure
I want to create empty directory structure in windows us开发者_JAVA百科ing 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
精彩评论