ftplibモジュールを使用してファイルをアップロードしています:
files = [ a.txt , b.txt , c.txt ]
s = ftplib.FTP(ftp_server , ftp_user , ftp_pw) # Connect to FTP
for i in range(len(files)):
f = open(files[i], 'rb')
stor = 'stor ' + files[i]
s.storbinary(stor, f)
f.close() # close file
s.quit() # close ftp
次のエラーをキャッチするにはどうすればよいですか?
socket.error: [Errno 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
また、FTPモジュールを使用するときによくある他のエラーのうち、キャッチする必要があるものは何ですか?
ヘルプやポインタをありがとう。