Hi all.
What I am trying to do is, Create a folder and enter documents into that folder.
I am doing this.
fso.CreateFolder (fldr & "\" & Trim$(rsT(2)))
Sometimes this folder is already out there. so.. it goes into my error handling.
then in my error handling:
Select Case Err.Number
Case 58
Resume Next ' folder already exits
Here is where I want to say. Keep the folder, but delete all the files in it so that i can repopulate the folder.
Any ideas of how that might look here??
Thanks
VBMORTON
What I am trying to do is, Create a folder and enter documents into that folder.
I am doing this.
fso.CreateFolder (fldr & "\" & Trim$(rsT(2)))
Sometimes this folder is already out there. so.. it goes into my error handling.
then in my error handling:
Select Case Err.Number
Case 58
Resume Next ' folder already exits
Here is where I want to say. Keep the folder, but delete all the files in it so that i can repopulate the folder.
Any ideas of how that might look here??
Thanks
VBMORTON