G
Guest
I'm trying to find out if a folder exists on my network before I create a new one. My naming rules start each folder with a case number, but users can add friendly client names after the case number manually for their convience
Problem: I can't get my test to true when checking to see if a folder already exists if a user has appended onto the end of the file name
Example: "\04-0784" should not be created if "\04-0784*" exists
I think I'm getting my wildcard wrong in the folderexists method of the FileSystemObject
If fs.folderexists(path & "*") = True The
projectFolderExists = Tru
End I
I've tried using "?" and "%". Out of ideas... Can anyone give me a hand? Thanks!
Problem: I can't get my test to true when checking to see if a folder already exists if a user has appended onto the end of the file name
Example: "\04-0784" should not be created if "\04-0784*" exists
I think I'm getting my wildcard wrong in the folderexists method of the FileSystemObject
If fs.folderexists(path & "*") = True The
projectFolderExists = Tru
End I
I've tried using "?" and "%". Out of ideas... Can anyone give me a hand? Thanks!