ealerner
Joined: 13 Jul 2004 Posts: 10
|
Posted: Sun Aug 22, 2004 3:19 pm Post subject: Create a Bunch of Folders from a List in a File |
|
|
Ever want to create a bunch of new folders with different names but found the Windows "Create Folder" process tedious? Just put the folder names on their own line in a text file and run this script, modifying the SetWorkingDir path and text file name as needed:
SetWorkingDir, C:\Documents and Settings\USERNAME\Desktop\TempScriptFolder
Loop, Read, C:\Documents and Settings\USERNAME\Desktop\Folders.txt
{
FileCreateDir, %A_LoopReadLine%
} |
|