Actually, thinking about it you could do it all in one command line (no need for environmental variables or batch files). 2000/XP only I'm afraid.
At the command line, in the directory where you want to create your folders, just type
FOR /L %A IN (1,1,10) DO md %A
This'll start the numbering at 1, increment by one each time and go on 'till 10
:-)
Mac
Last edited by Mac the Knife; 7th March 2010 at 06:13.