天天看點

批量建立數字檔案夾.bat

@echo off&title %~f0 - [email protected]

set /p start=請輸入起始數:
set /p count=請輸入建立檔案夾數量:
set /a end=%start%+%count%

md %start%-%end%
for /l %%i in (%start%, 1, %end%) do md %start%-%end%\%%i

pause>nul