F5F Stay Refreshed Software Operating Systems 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.

Use a script or command-line tool to generate the folders in bulk.

B
byZeto
Junior Member
42
06-08-2023, 01:41 PM
#1
Use a script to generate and create each folder sequentially from 1 to 1000.
B
byZeto
06-08-2023, 01:41 PM #1

Use a script to generate and create each folder sequentially from 1 to 1000.

I
iRaine
Posting Freak
800
06-10-2023, 10:54 AM
#2
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.
I
iRaine
06-10-2023, 10:54 AM #2

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.

C
CatFlag
Member
53
06-11-2023, 09:43 AM
#3
Loop through 1 to 1000 and run commands in each iteration within a CMD window at your desired location
C
CatFlag
06-11-2023, 09:43 AM #3

Loop through 1 to 1000 and run commands in each iteration within a CMD window at your desired location