Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查 ftp.storbinary() 在 ftp 位置成功上传文件。我的意思是什么是 storbinary() 方法的返回类型来识别失败和成功的情况。
谢谢,
这是 Python。Python 使用异常来指示错误情况,而不是返回值。
try: ftp.storbinary(...) except ftplib.all_errors: ... else: print "Transfer succeeded!"