获取错误路径不存在

时间:2015-08-18 11:39:51

标签: python remote-access python-os

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

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'

1 个答案:

答案 0 :(得分:0)

os.path仅在您的计算机上本地运行。

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