0

在我的代码中,我正在检查远程路径

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'
4

1 回答 1

0

os.path仅在您的机器上本地工作。

对于远程服务器,您需要执行以下操作:Python check if website exists

于 2015-08-18T11:44:31.287 回答