I am trying to test if a file exists on the network drive using os.path.isfile however it returns false even when the file is there. Any ideas why this might be or any other methods I could use to check for this file?
I am using Python2.7 and Windows10
This returns true as it should:
import os
if os.path.isfile("C:\test.txt"):
print "Is File"
else:
print "Is Not File"
This returns false even though the file exists:
import os
if os.path.isfile("Q:\test.txt"):
print "Is File"
else:
print "Is Not File"