Folders

  • Thread starter Thread starter windowshelp
  • Start date Start date
W

windowshelp

Is there a way to make a mass amount of folders at once from a list of names
that I have?
 
windowshelp said:
Is there a way to make a mass amount of folders at once from a list of names
that I have?

At a command prompt:

for /f "usebackq delims=" %a in ("c:\folderlist.txt") do md "%a"

John
 
Back
Top