在我的代码中,我正在检查远程路径
if not os.path.exists(dest_dir):
print "Dest directory does not exist"
return
但是当我手动访问路径时,我可以访问。
My path is '\\10.223.161.31\D$\images'
I have set to '\\\\10.223.161.31\\D$\\images'
在我的代码中,我正在检查远程路径
if not os.path.exists(dest_dir):
print "Dest directory does not exist"
return
但是当我手动访问路径时,我可以访问。
My path is '\\10.223.161.31\D$\images'
I have set to '\\\\10.223.161.31\\D$\\images'
os.path
仅在您的机器上本地工作。
对于远程服务器,您需要执行以下操作:Python check if website exists