python从ftp服务器下载文件

2022-04-16 00:00:00 文件 服务器 下载

python从ftp服务器下载文件,使用了ftplib模块实现

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)

相关文章