python 实现FTP上传指定文件
Windows 平台 如何用PYTHON中的FTPLIB模块 实现对指定文件的上传?求精通python的大神给写出一段详细的代码与注释。最后40分全部奉上。 python ftp?
[解决办法]
完整点的例子:
import ftplib
session = ftplib.FTP('server.address.com','USERNAME','PASSWORD')
file = open('kitten.jpg','rb') # file to send
session.storbinary('STOR kitten.jpg', file) # send the file
file.close() # close file and FTP
session.quit()