开发者

Create Empty Directory structure

开发者 https://www.devze.com 2023-02-23 10:29 出处:网络
I want to create empty directory structure in windows us开发者_JAVA百科ing cmd any batch file? can any one help me?try this

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

0

精彩评论

暂无评论...
验证码 换一张
取 消