Function to check File is exists or not
Function to check File is exists or not
Rate Function to check File is exists or not
(1(1 Vote))
On Error GoTo LOCALERRORHANDLER
Dim strRetVal As String
strRetVal = Dir(strFileName, vbArchive)
If strRetVal <> "" Then
fnFileExists = True
End If
Exit Function
LOCALERRORHANDLER:
End Function
Function to check File is exists or not Comments
No comments yet — be the first to post one!
Post a Comment