- @echo off
- set info=互助互利,支付宝扫码头像,感谢赞助
- rem 有问题,可加QQ956535081及时沟通
- title %info%
- cd /d "%~dp0"
- set "前缀=Vol_"
- set "起始数=1"
- set "总数=100"
- set "位数=3"
- set /a "n=0,m=100000000"
- :create
- set /a t=m+%起始数%+n
- setlocal enabledelayedexpansion
- if not exist "!前缀!!t:~-%位数%!" (md "!前缀!!t:~-%位数%!")
- endlocal
- set /a n+=1
- if %n% geq %总数% (goto end)
- goto create
- :end
- echo;%info%
- pause
复制代码
|