开发者

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

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜