Difference between revisions of "FolderVerify"

From scripting
Jump to: navigation, search
(Created page with " Function FolderVerify(curFolderStr As String) As Boolean On Error GoTo blast HHH = FS.CreateFolder(curFolderStr) FolderVerify = True Exit Function blast: FolderVerify =...")
 
(No difference)

Latest revision as of 05:34, 22 April 2017

Function FolderVerify(curFolderStr As String) As Boolean
On Error GoTo blast
HHH = FS.CreateFolder(curFolderStr)
FolderVerify = True
Exit Function
blast:
FolderVerify = False
End Function