mkdir help

  • Thread starter Thread starter ryan
  • Start date Start date
R

ryan

how can i create consecutive sub directories. say i have a
directory named numbers and i want to create within a
batch file 10 sub directories(1,2,3,4,5,6,7,8,9,10). how
can i do this. thanks for any help
 
ryan said:
how can i create consecutive sub directories. say i have a
directory named numbers and i want to create within a
batch file 10 sub directories(1,2,3,4,5,6,7,8,9,10). how
can i do this. thanks for any help

for /l %%a in (1,1,10) do md %%a
 
thanks for the reply thats what i was looking for, but i
have one more question. how can i make the sud directories
names (06-01-04, 06-02-04, 06-03-04, 06-04-04, 06-05-04.
 
Back
Top