From: windowshelp on
Is there a way to make a mass amount of folders at once from a list of names
that I have?
From: John John - MVP on
windowshelp wrote:
> 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