Exactly where is System.IO.FileExists looking for the file?
I am working with some VB.net code. The folowing line of code checks if a file exists, but exactly which directory is it looking in as the directory path is never specified:
If System.IO.File.Exists(STRName) Then
' do something
End If