python ftp 上传
生活随笔
收集整理的這篇文章主要介紹了
python ftp 上传
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
#!/usr/bin/python
# -*-coding:utf-8 -*-from ftplib import FTPdef ftpconnect(host,username,password):ftp=FTP()ftp.connect(host,7005)ftp.login(username,password)return ftp#從ftp下載
def downloadfile(ftp,remotepath,localpath):bufsize = 1024fp=open(localpath,'wb')ftp.retrbinary('RETR ' + remotepath,fp.write,bufsize)ftp.set_debuglevel(0)fp.close()def uploadfile(ftp,remotepath,localpath):bufsize=1024fp=open(localpath,'rb')ftp.storbinary('STOR ' + remotepath,fp,bufsize)ftp.set_debuglevel(0)fp.close()if __name__=='__main__':ftp=ftpconnect("60.174.203.118","ahwater","1qaz@WSX")#uploadfile(ftp,"D:\\秦瑞-工作\\BugReport.txt","BugReport-bak.txt")uploadfile(ftp,"py_ftp.py","D:\py_ftp.py")ftp.quit()
?
總結(jié)
以上是生活随笔為你收集整理的python ftp 上传的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。