addon-tools-el/mkdirp.bat

11 lines
100 B
Batchfile

for %%x in (%*) do (
if %%x=="-p" goto continue
if not exist %%x md %%x
:continue
rem
)