我在“\ 192.168.1.110 \ avid \ GavinH \ SearchDrives \ drivelibrary.db”服务器上有一个数据库文件 测试无法看到。
然而,当我在本地测试文件时,它发现没问题。 路径有问题吗?该文件确实存在于此位置。
def testConnection():
dbpath = "\\192.168.1.110\avid\GavinH\SearchDrives\drivelibrary.db"
if os.path.isfile(dbpath):
print True
else:
print False
if __name__ == "__main__":
testConnection()
在Python中使用这样的网络路径是否有问题? 有什么想法吗?
由于 加文