python實(shí)現(xiàn)從ftp上下載文件的實(shí)例方法
python從ftp上下載文件的方法:
首先導(dǎo)入ftp模塊;
然后使用【chdir】命令切換工作路徑;
再使用“self.ftp.nlst()”命令獲取目錄下的文件;
最后使用“self.ftp.retrbinary()”命令下載ftp文件即可。
#!/usr/bin/python # coding=utf-8 import os from ftplib import FTP # 引入ftp模塊 class MyFtp: ftp = FTP() def __init__(self,host,port=21): self.ftp.connect(host,port) def login(self,username,pwd): self.ftp.set_debuglevel(2) # 打開調(diào)試級(jí)別2,顯示詳細(xì)信息 self.ftp.login(username,pwd) p rint(self.ftp.welcome) def downloadFile(self,localpath,remotepath,filename): os.chdir(localpath) # 切換工作路徑到下載目錄 self.ftp.cwd( remotepath) # 要登錄的ftp目錄 self.ftp.nlst() # 獲取目錄下的文件 file_handle = open(filename,"wb").write # 以寫模式在本地打開文件 self.ftp.retrbinary('RETR %s' % os.path.basename(filename),file_handle,blocksize=1024) # 下載ftp文件 # ftp.delete(filename) # 刪除ftp服務(wù)器上的文件 def close(self): self.ftp.set_debuglevel(0) # 關(guān)閉調(diào)試 self.ftp.quit()if __name__ == '__main__': ftp = MyFtp('host') ftp.login('username','pwd') ftp.downloadFile('E:\\RED\\workspace\\appAuto\\apk\\Android10','/mobile/Android/release10/','xxx.apk') ftp.close()
實(shí)例擴(kuò)展:
#coding=utf-8 ''' ftp自動(dòng)下載、自動(dòng)上傳腳本,可以遞歸目錄操作 ''' from ftplib import FTP import os,sys,string,datetime,time import socket class MYFTP: def __init__(self, hostaddr, username, password, remotedir, port=21): self.hostaddr = hostaddr self.username = username self.password = password self.remotedir = remotedir self.port = port self.ftp = FTP() self.file_list = [] # self.ftp.set_debuglevel(2) def __del__(self): self.ftp.close() # self.ftp.set_debuglevel(0) def login(self): ftp = self.ftp try: timeout = 300 socket.setdefaulttimeout(timeout) ftp.set_pasv(True) print u'開始連接到 %s' %(self.hostaddr) ftp.connect(self.hostaddr, self.port) print u'成功連接到 %s' %(self.hostaddr) print u'開始登錄到 %s' %(self.hostaddr) ftp.login(self.username, self.password) print u'成功登錄到 %s' %(self.hostaddr) debug_print(ftp.getwelcome()) except Exception: print u'連接或登錄失敗' try: ftp.cwd(self.remotedir) except(Exception): print u'切換目錄失敗' def is_same_size(self, localfile, remotefile): try: remotefile_size = self.ftp.size(remotefile) except: remotefile_size = -1 try: localfile_size = os.path.getsize(localfile) except: localfile_size = -1 debug_print('localfile_size:%d remotefile_size:%d' %(localfile_size, remotefile_size),) if remotefile_size == localfile_size: return 1 else: return 0 def download_file(self, localfile, remotefile): if self.is_same_size(localfile, remotefile): debug_print(u'%s 文件大小相同,無(wú)需下載' %localfile) return else: debug_print(u'>>>>>>>>>>>>下載文件 %s ... ...' %localfile) #return file_handler = open(localfile, 'wb') self.ftp.retrbinary(u'RETR %s'%(remotefile), file_handler.write) file_handler.close() def download_files(self, localdir='./', remotedir='./'): try: self.ftp.cwd(remotedir) except: debug_print(u'目錄%s不存在,繼續(xù)...' %remotedir) return if not os.path.isdir(localdir): os.makedirs(localdir) debug_print(u'切換至目錄 %s' %self.ftp.pwd()) self.file_list = [] self.ftp.dir(self.get_file_list) remotenames = self.file_list #print(remotenames) #return for item in remotenames: filetype = item[0] filename = item[1] local = os.path.join(localdir, filename) if filetype == 'd': self.download_files(local, filename) elif filetype == '-': self.download_file(local, filename) self.ftp.cwd('..') debug_print(u'返回上層目錄 %s' %self.ftp.pwd()) def upload_file(self, localfile, remotefile): if not os.path.isfile(localfile): return if self.is_same_size(localfile, remotefile): debug_print(u'跳過(guò)[相等]: %s' %localfile) return file_handler = open(localfile, 'rb') self.ftp.storbinary('STOR %s' %remotefile, file_handler) file_handler.close() debug_print(u'已傳送: %s' %localfile) def upload_files(self, localdir='./', remotedir = './'): if not os.path.isdir(localdir): return localnames = os.listdir(localdir) self.ftp.cwd(remotedir) for item in localnames: src = os.path.join(localdir, item) if os.path.isdir(src): try: self.ftp.mkd(item) except: debug_print(u'目錄已存在 %s' %item) self.upload_files(src, item) else: self.upload_file(src, item) self.ftp.cwd('..') def get_file_list(self, line): ret_arr = [] file_arr = self.get_filename(line) if file_arr[1] not in ['.', '..']: self.file_list.append(file_arr) def get_filename(self, line): pos = line.rfind(':') while(line[pos] != ' '): pos += 1 while(line[pos] == ' '): pos += 1 file_arr = [line[0], line[pos:]] return file_arr def debug_print(s): print s if __name__ == '__main__': timenow = time.localtime() datenow = time.strftime('%Y-%m-%d', timenow) # 配置如下變量 hostaddr = '211.15.113.45' # ftp地址 username = 'UserName' # 用戶名 password = '123456' # 密碼 port = 21 # 端口號(hào) rootdir_local = 'E:/mypiv' # 本地目錄 rootdir_remote = '/PIV' # 遠(yuǎn)程目錄 f = MYFTP(hostaddr, username, password, rootdir_remote, port) f.login() f.download_files(rootdir_local, rootdir_remote) timenow = time.localtime() datenow = time.strftime('%Y-%m-%d', timenow) logstr = u"%s 成功執(zhí)行了備份n" %datenow debug_print(logstr)
到此這篇關(guān)于python實(shí)現(xiàn)從ftp上下載文件的實(shí)例方法的文章就介紹到這了,更多相關(guān)python怎么實(shí)現(xiàn)從ftp上下載文件內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
- python基于paramiko庫(kù)遠(yuǎn)程執(zhí)行 SSH 命令,實(shí)現(xiàn) sftp 下載文件
- Python解析m3u8拼接下載mp4視頻文件的示例代碼
- python爬蟲智能翻頁(yè)批量下載文件的實(shí)例詳解
- python 基于selectors庫(kù)實(shí)現(xiàn)文件上傳與下載
- Python實(shí)現(xiàn)FTP文件定時(shí)自動(dòng)下載的步驟
- Python 使用SFTP和FTP實(shí)現(xiàn)對(duì)服務(wù)器的文件下載功能
- python從ftp獲取文件并下載到本地
- python 下載文件的多種方法匯總
- Python根據(jù)URL地址下載文件并保存至對(duì)應(yīng)目錄的實(shí)現(xiàn)
- 用Python自動(dòng)下載網(wǎng)站所有文件
相關(guān)文章
python?lazypredict構(gòu)建大量基本模型簡(jiǎn)化機(jī)器學(xué)習(xí)
這篇文章主要介紹了python?lazypredict構(gòu)建大量基本模型簡(jiǎn)化機(jī)器學(xué)習(xí),有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2024-01-01解析Python中的變量、引用、拷貝和作用域的問(wèn)題
這篇文章主要介紹了Python中的變量、引用、拷貝和作用域的相關(guān)問(wèn)題,是Python學(xué)習(xí)過(guò)程當(dāng)中必會(huì)的基礎(chǔ)知識(shí),需要的朋友可以參考下2015-04-04Python正則表達(dá)式實(shí)現(xiàn)截取成對(duì)括號(hào)的方法
這篇文章主要介紹了Python正則表達(dá)式實(shí)現(xiàn)截取成對(duì)括號(hào)的方法,涉及Python正則匹配相關(guān)操作技巧,需要的朋友可以參考下2017-01-01Python HTMLTestRunner庫(kù)安裝過(guò)程解析
這篇文章主要介紹了Python HTMLTestRunner庫(kù)安裝過(guò)程解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-05-05Django中對(duì)通過(guò)測(cè)試的用戶進(jìn)行限制訪問(wèn)的方法
這篇文章主要介紹了Django中對(duì)通過(guò)測(cè)試的用戶進(jìn)行限制訪問(wèn)的方法,Django是眾多Python高人氣web框架中最為著名的一個(gè),需要的朋友可以參考下2015-07-07