Searching a specified file found or not
Searching a specified file found or not
Rate Searching a specified file found or not
(1(1 Vote))
Dim FSO As Variant
Set FSO = CreateObject("Scripting.FileSystemObject")
If (FSO.FileExists(filespec)) Then
FileExist = True
Else
FileExist = False
End If
Set FSO = Nothing
End Function
Searching a specified file found or not Comments
No comments yet — be the first to post one!
Post a Comment