Os.path.isfile() Returns False For File On Network Drive
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 method
Solution 1:
From python https://docs.python.org/2/library/os.path.html:
The os.path module is always the path module suitable for the operating system Python is running on, and therefore usable for local paths
Trying using the full UNC path instead of the mapped drive.
import os
if os.path.isfile(r"\\full\uncpath\test.txt"):
print"Is File"else:
print"Is Not File"
Post a Comment for "Os.path.isfile() Returns False For File On Network Drive"