您好,登錄后才能下訂單哦!
利用python怎么將ftp文件下載到本地?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
注意一點的是os.path.join 的用法需要注意
#!/usr/bin/python # -*- coding: utf-8 -*- """ FTP常用操作 """ from ftplib import FTP import os class FTP_OP(object): def __init__(self, host, username, password, port): """ 初始化ftp :param host: ftp主機ip :param username: ftp用戶名 :param password: ftp密碼 :param port: ftp端口 (默認21) """ self.host = host self.username = username self.password = password self.port = port def ftp_connect(self): """ 連接ftp :return: """ ftp = FTP() ftp.set_debuglevel(1) # 不開啟調(diào)試模式 ftp.connect(host=self.host, port=self.port) # 連接ftp ftp.login(self.username, self.password) # 登錄ftp ftp.set_pasv(False)##ftp有主動 被動模式 需要調(diào)整 return ftp def download_file(self, ftp_file_path, dst_file_path): """ 從ftp下載文件到本地 :param ftp_file_path: ftp下載文件路徑 :param dst_file_path: 本地存放路徑 :return: """ buffer_size = 102400 #默認是8192 ftp = self.ftp_connect() print(ftp.getwelcome() ) #顯示登錄ftp信息 file_list = ftp.nlst(ftp_file_path) for file_name in file_list: print("file_name"+file_name) ftp_file = os.path.join(ftp_file_path, file_name) print("ftp_file:"+ftp_file) #write_file = os.path.join(dst_file_path, file_name) write_file = dst_file_path+file_name ##在這里如果使用os.path.join 進行拼接的話 會丟失dst_file_path路徑,與上面的拼接路徑不一樣 print("write_file"+write_file) if file_name.find('.png')>-1 and not os.path.exists(write_file): print("file_name:"+file_name) #ftp_file = os.path.join(ftp_file_path, file_name) #write_file = os.path.join(dst_file_path, file_name) with open(write_file, "wb") as f: ftp.retrbinary('RETR %s' % ftp_file, f.write, buffer_size) #f.close() ftp.quit() if __name__ == '__main__': host = "192.168.110.**" username = "****" password = "****" port = 21 ftp_file_path = "/erp-mall/" #FTP目錄 dst_file_path = "/root/11" #本地目錄 ftp = FTP_OP(host=host, username=username, password=password, port=port) ftp.download_file(ftp_file_path=ftp_file_path, dst_file_path=dst_file_path)
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。