Hi,
I'm checking if a file exists with the following code;
For some reason it always returns false even though the file does exist. Any suggestions? Could this be a security issue?
I'm checking if a file exists with the following code;
Code:
If System.IO.File.Exists("C:\test.txt") = True Then
MsgBox("File Exists")
Else
MsgBox("File Does Not Exist")
End If
Comment