python从ftp服务器下载文件详解编程语言

import ftplib 
ftp = ftblib.FTP("ftp.yourServer.com") 
ftp.login("username", "password") 
filename = "index.html" 
ftp.storlines("STOR " + filename, open(filename)) 
filename="app.exe" 
ftp.storbinary("STOR " + filename, open(filename, "rb"), 1024)

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

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

相关推荐

发表回复

登录后才能评论