Basic FileExist
Check to see if a File exists, simple code
Rate Basic FileExist
(8(8 Vote))
Dim Script As Object
Set Script = CreateObject("Scripting.filesystemobject")
If Script.FileExists("C:\My Documents\Prog.exe") = True Then
'True code here
Else
'False code here
End if
Basic FileExist Comments
No comments yet — be the first to post one!
Post a Comment