Posted by Valerie on May 31, 2009 at 05:20:48:
In Reply to: Re: creat in Dos posted by Dr. Ayad on May 30, 2009 at 15:04:30:
I suspect that the version you quote is in fact a version of Windows XP, not a true Dos version.
In XP the following batch script will create new directories in your Temp directory, you can change the MD line to suit your requirements.
@echo off
cls
for /l %%1 in (1,1,100) do (
md %temp%\%%1\
)