我正在尝试连接到 DNS 中未列出的服务器,它只是一个带有 ip 的服务器。
使用此代码我没有运气:
netpath = r'\\10.5.1.22\Products'
networkPath = netpath
unc = ''.join(['\\\\', host])
print unc
try:
win32wnet.WNetAddConnection2(0, None, unc, None, username, password)
except Exception, err:
if isinstance(err, win32wnet.error):
#Disconnect previous connections if detected, and reconnect.
if err[0] == 1219:
win32wnet.WNetCancelConnection2(unc, 0, 0)
return wnet_connect(host, username, password)
raise err
在这种情况下有没有更好的连接方式我正在使用 Python 2.7