Bets I could find was this:
=================================
Enter this at the command prompt:
for /f %q in (C:\fileWithList.txt) do (mkdir
C:\Path\Where\You\Would\Like\Directories\Created\%q)
If you put this in a .bat, %q changes to %%q.
===================================
But this presumes you have a text list of folder names.
|