LoginSignup
9
8

More than 5 years have passed since last update.

${西暦}/${月}のフォルダをbatで作る

Posted at

ただの書き殴りです(もっと良い方法あれば...
usage: hoge.bat 2010 2020

setlocal enabledelayedexpansion
for /L %%y in (%1,1,%2) do (set b=%%y
for /L %%i in (101,1,112) do (set a=%%i
mkdir "!b!/!a:~-2!"))
endlocal
9
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
8