python通过ftp上传文件详解编程语言

引入ftplib模块通过ftp发送文件的方法

import ftplib                                          # We import the FTP module 
session = ftplib.FTP('myserver.com','login','passord') # Connect to the FTP server 
myfile = open('toto.txt','rb')                         # Open the file to send 
session.storbinary('STOR toto.txt', myfile)            # Send the file 
myfile.close()                                         # Close the file 
session.quit()                                         # Close FTP session 

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/8490.html

(0)
上一篇 2021年7月18日
下一篇 2021年7月18日

相关推荐

发表回复

登录后才能评论