auto creating folders from a list

  • Thread starter Thread starter annab623
  • Start date Start date
A

annab623

i have a list of around 3,000 customers and i would like to make a
separate folder on our server for each one. can someone tell me the
best/easiest way to do this?

thanks, anna
 
[[email protected]]s message :
i have a list of around 3,000 customers and i would like to make a
separate folder on our server for each one. can someone tell me the
best/easiest way to do this?

thanks, anna

You can use a BAT file, ask for help here:
microsoft.public.win2000.cmdprompt.admin

Or you can use WSH:
microsoft.puvlic.scripting.jscript
microsoft.puvlic.scripting.vbscript
microsoft.puvlic.scripting.wsh
 
i have a list of around 3,000 customers and i would like to make a
separate folder on our server for each one. can someone tell me the
best/easiest way to do this?

If you create a text file (call it "namedata.txt", for example) with
the directory names you want to create, one per line, you could use a
batch file something like this:


for /F %%i in (namedata.txt) do md %%i
 
Back
Top