W windowshelp May 6, 2010 #1 Is there a way to make a mass amount of folders at once from a list of names that I have?
J John John - MVP May 6, 2010 #2 windowshelp said: Is there a way to make a mass amount of folders at once from a list of names that I have? Click to expand... At a command prompt: for /f "usebackq delims=" %a in ("c:\folderlist.txt") do md "%a" John
windowshelp said: Is there a way to make a mass amount of folders at once from a list of names that I have? Click to expand... At a command prompt: for /f "usebackq delims=" %a in ("c:\folderlist.txt") do md "%a" John