Use a script or command-line tool to generate the folders in bulk.
Use a script or command-line tool to generate the folders in bulk.
Here's a vbscript that will do the job in a very basic way... Copy the contents below and save into a notepad, save the file with a ".vbs" extension, execute and it will create folders 1 to 1000 ---- cut below this line --- Option Explicit Dim objFSO, x Set objFSO = CreateObject("Scripting.FileSystemObject") x = 1 Do until x = 1000 objFSO.CreateFolder x x = x + 1 Loop msgbox "Finished." WScript.Quit ---- cut above this line --- Kind Regards, Ed.