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 を使用しています