Question : Batch create folders

We have 100's of folders on our network. I need a quick way to create a folder called "email" in each one of them. Doesn't matter if its through a program or script. Anything so i dont have to go into each folder and create it.

Answer : Batch create folders

I did find this link...
http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/MS_DOS/Q_22131571.html
 modifying that information some

for /f %F in ('dir /b /aD') do mkdir %F\email
Random Solutions  
 
programming4us programming4us