在linux中使用python知道网络路径(例如//192.168.1.1/test)是否存在的最佳方法是什么?
答案 0 :(得分:3)
如果“路径”是指互联网网址,则您需要查看urllib模块。
from urllib import urlopen
try:
urlopen(path)
except IOError:
pass # does not exist
else:
pass # does exist
如果“path”是指Windows UNC,那么您将需要使用os模块。
import os
os.path.isdir(path)
注意,我发现Windows UNC路径有点不稳定。根据您的网络设置和权限,它们可能可以访问,也可能不可访问。