Re: creat in Dos


[ Follow Ups ] [ Post Followup ] [ The EasyDOS Forum ] [ FAQ ]

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\
)


Follow Ups:



Post a Followup (use TAB key to move between boxes - NOT ENTER or RETURN)

Name:
E-Mail:

Subject:

Type your comments in the box below and SUBMIT:


[ Follow Ups ] [ Post Followup ] [ The EasyDOS Forum ] [ FAQ ]