| |
rhrogers
Posts: 5
Score: 0
Joined: 2/6/2004
From: Canada
Status: offline
|
I would just create a loop of some kind where the name of the folder is changed, this is assuming that there is some kind of commonality or that it is pulling the names of the folders from some source. In the loop I would use the File System Object check your MSDN Library for complete reference. I Cut out the sample code from the CreateFolder Method: Function CreateFolderDemo Dim fso, f Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.CreateFolder("c:\New Folder") CreateFolderDemo = f.Path End Function
|
|