Mega Code Archive

 
Categories / VisualBasic Script / File Path
 

Check file existance

Sub ReadPersistedRecordset()     Dim strFileName As String     strFileName = "c:\test.txt"     If Len(Dir(strFileName)) = 0 Then         msgBox "File Not Found"         Exit Sub     End If End Sub