I want to be able to create (automatically) a file folder containing 100 subfolders, named (and numbered) sequentially.
I'm sure I'm doing it the hard way at the moment, via copy, paste & renumbering by hand.
What I want is a folder that contains folders, say, named "Project # 11200" through "Project 11299" for example.
Is there some way to automate this that even a programming illiterate can figure out?
Help? Elementary computer knowledge lacking!
- WarAdvocat
- DBB Defender
- Posts: 3035
- Joined: Sun Jun 23, 2002 2:01 am
- Location: Fort Lauderdale, FL USA
- CDN_Merlin
- DBB_Master
- Posts: 9781
- Joined: Thu Nov 05, 1998 12:01 pm
- Location: Capital Of Canada
- Testiculese
- DBB Material Defender
- Posts: 4689
- Joined: Sun Nov 11, 2001 3:01 am
Save this to a VBS file:
And modify as needed.
Code: Select all
Set fso = CreateObject ("Scripting.FileSystemObject")
Dim N
For N = 0 To 99
fso.CreateFolder ("bla" & N)
Next
- WarAdvocat
- DBB Defender
- Posts: 3035
- Joined: Sun Jun 23, 2002 2:01 am
- Location: Fort Lauderdale, FL USA