首頁>技術>

ftplib類庫常用相關操作

import ftplibftp  = ftplib.FTP()ftp.set_debuglevel(2) #開啟除錯級別2,顯示詳細資訊ftp.connect(“IP”,”port”) #連線的ftp sever和埠ftp.login(“user”,”password”)#連線的使用者名稱,密碼print ftp.getwelcome() #打印出歡迎資訊ftp.cmd(“xxx/xxx”) #更改遠端目錄bufsize=1024 #設定的緩衝區大小filename=”filename.txt” #需要下載的檔案file_handle=open(filename,”wb”).write #以寫模式在本地開啟檔案ftp.retrbinaly(“RETR filename.txt”,file_handle,bufsize) #接收伺服器上檔案並寫入本地檔案ftp.set_debuglevel(0) #關閉除錯模式ftp.quit #退出ftpftp相關命令操作ftp.cwd(pathname) #設定FTP當前操作的路徑ftp.dir() #顯示目錄下檔案資訊ftp.nlst() #獲取目錄下的檔案ftp.mkd(pathname) #新建遠端目錄ftp.pwd() #返回當前所在位置ftp.rmd(dirname) #刪除遠端目錄ftp.delete(filename) #刪除遠端檔案ftp.rename(fromname, toname)#將fromname修改名稱為toname。ftp.storbinaly(“STOR filename.txt”,file_handel,bufsize) #上傳目標檔案ftp.retrbinary(“RETR filename.txt”,file_handel,bufsize)#下載FTP檔案
FTP常用操作

下面是ftp操作和使用的相關例項。

#coding:utf-8import sys,os,ftplib,socketHOST = '192.168.8.102'  #FTP主機user = "username"password = "pwd"buffer_size = 8192 #緩衝區#連線登陸#ftp連線函式def connect():    try:        ftp = ftplib.FTP(HOST)        #ftp.set_debuglevel(2) #開啟除錯級別2,顯示詳細資訊        ftp.login()#登入,引數user,password,acct均是可選引數,         #f.login(user="user", passwd="password")        #ftp.cmd(“xxx/xxx”) #更改遠端目錄        #bufsize=1024 #設定的緩衝區大小        return ftp    except (socket.error,socket.gaierror):        print("FTP登陸失敗,請檢查主機號、使用者名稱、密碼是否正確")        sys.exit(0)    print('已連線到: "%s"' % HOST)#中斷並退出def disconnect(ftp):    ftp.quit()  #FTP.close():單方面的關閉掉連線。FTP.quit():傳送QUIT命令給伺服器並關閉掉連線#上傳檔案def upload(ftp, filepath):    f = open(filepath, "rb")    file_name = os.path.split(filepath)[-1]    try:        ftp.storbinary('STOR %s'%file_name, f, buffer_size)        print('成功上傳檔案: "%s"' % file_name)    except ftplib.error_perm:        return False    return True#下載檔案def download(ftp, filename):    f = open(filename,"wb").write    try:        ftp.retrbinary("RETR %s"%filename, f, buffer_size)        print('成功下載檔案: "%s"' % filename)    except ftplib.error_perm:        return False    return True#獲取目錄下檔案或資料夾想詳細資訊def listinfo(ftp):    ftp.dir()  #查詢是否存在指定檔案    def find(ftp,filename):    ftp_f_list = ftp.nlst()  #獲取目錄下檔案、資料夾列表    if filename in ftp_f_list:        return True    else:        return Falsedef main():    ftp = connect()                  #連線登陸ftp    dirpath = 'lp'                   #目錄,不能使用lp/lp1這種多級建立,而且要保證你的ftp目錄,右鍵屬性不能是隻讀的    try: ftp.mkd(dirpath)                 #新建遠端目錄    except ftplib.error_perm:        print("目錄已經存在或無法建立")    try:ftp.cwd(dirpath)             #重定向到指定路徑    except ftplib.error_perm:        print('不可以進入目錄:"%s"' % dirpath)    print(ftp.pwd())                        #返回當前所在位置    try: ftp.mkd("dir1")                  #在當前路徑下建立dir1資料夾    except ftplib.error_perm:        print("目錄已經存在或無法建立")    upload(ftp,"D:/test.txt")       #上傳本地檔案    filename="test1.txt"    ftp.rename("test.txt", filename) #檔案改名    if os.path.exists(filename):   #判斷本地檔案是否存在        os.unlink(filename)    #如果存在就刪除    download(ftp,filename)        #下載ftp檔案    listinfo(ftp)                   #列印目錄下每個檔案或資料夾的詳細資訊    files = ftp.nlst()              #獲取路徑下檔案或資料夾列表    print(files)    ftp.delete(filename)              #刪除遠端檔案        ftp.rmd("dir1")                  #刪除遠端目錄    ftp.quit()  #退出if __name__ == '__main__':    main()
FTP類檔案

下面的程式碼將ftp常用的功能封裝成了一個ftp類

#!/usr/bin/env python# -*- coding: utf-8 -*-import ftplibimport osimport sysclass FTPSync(object):  conn = ftplib.FTP()  def __init__(self,host,port=21):        self.conn.connect(host,port)      def login(self,username,password):    self.conn.login(username,password)    self.conn.set_pasv(False)    print self.conn.welcome  def test(self,ftp_path):    print ftp_path    print self._is_ftp_dir(ftp_path)    #print self.conn.nlst(ftp_path)    #self.conn.retrlines( 'LIST ./a/b')    #ftp_parent_path = os.path.dirname(ftp_path)    #ftp_dir_name = os.path.basename(ftp_path)    #print ftp_parent_path    #print ftp_dir_name  def _is_ftp_file(self,ftp_path):    try:      if ftp_path in self.conn.nlst(os.path.dirname(ftp_path)):        return True      else:        return False    except ftplib.error_perm,e:      return False  def _ftp_list(self, line):    list = line.split(' ')    if self.ftp_dir_name==list[-1] and list[0].startswith('d'):      self._is_dir = True  def _is_ftp_dir(self,ftp_path):    ftp_path = ftp_path.rstrip('/')    ftp_parent_path = os.path.dirname(ftp_path)    self.ftp_dir_name = os.path.basename(ftp_path)    self._is_dir = False    if ftp_path == '.' or ftp_path== './' or ftp_path=='':      self._is_dir = True    else:      #this ues callback function ,that will change _is_dir value      try:        self.conn.retrlines('LIST %s' %ftp_parent_path,self._ftp_list)      except ftplib.error_perm,e:        return self._is_dir        return self._is_dir  def get_file(self,ftp_path,local_path='.'):    ftp_path = ftp_path.rstrip('/')    if self._is_ftp_file(ftp_path):          file_name = os.path.basename(ftp_path)      #如果本地路徑是目錄,下載檔案到該目錄      if os.path.isdir(local_path):        file_handler = open(os.path.join(local_path,file_name), 'wb' )        self.conn.retrbinary("RETR %s" %(ftp_path), file_handler.write)        file_handler.close()      #如果本地路徑不是目錄,但上層目錄存在,則按照本地路徑的檔名作為下載的檔名稱      elif os.path.isdir(os.path.dirname(local_path)):        file_handler = open(local_path, 'wb' )        self.conn.retrbinary("RETR %s" %(ftp_path), file_handler.write)        file_handler.close()      #如果本地路徑不是目錄,且上層目錄不存在,則退出      else:        print 'EROOR:The dir:%s is not exist' %os.path.dirname(local_path)    else:      print 'EROOR:The ftp file:%s is not exist' %ftp_path  def put_file(self,local_path,ftp_path='.'):    ftp_path = ftp_path.rstrip('/')    if os.path.isfile( local_path ):                 file_handler = open(local_path, "r")      local_file_name = os.path.basename(local_path)      #如果遠端路徑是個目錄,則上傳檔案到這個目錄,檔名不變      if self._is_ftp_dir(ftp_path):        self.conn.storbinary('STOR %s'%os.path.join(ftp_path,local_file_name), file_handler)      #如果遠端路徑的上層是個目錄,則上傳檔案,檔名按照給定命名      elif self._is_ftp_dir(os.path.dirname(ftp_path)):        print 'STOR %s'%ftp_path                self.conn.storbinary('STOR %s'%ftp_path, file_handler)      #如果遠端路徑不是目錄,且上一層的目錄也不存在,則提示給定遠端路徑錯誤      else:                print 'EROOR:The ftp path:%s is error' %ftp_path      file_handler.close()    else:      print 'ERROR:The file:%s is not exist' %local_path  def get_dir(self,ftp_path,local_path='.',begin=True):    ftp_path = ftp_path.rstrip('/')    #當ftp目錄存在時下載        if self._is_ftp_dir(ftp_path):      #如果下載到本地當前目錄下,並建立目錄      #下載初始化:如果給定的本地路徑不存在需要建立,同時將ftp的目錄存放在給定的本地目錄下。      #ftp目錄下檔案存放的路徑為local_path=local_path+os.path.basename(ftp_path)      #例如:將ftp資料夾a下載到本地的a/b目錄下,則ftp的a目錄下的檔案將下載到本地的a/b/a目錄下      if begin:        if not os.path.isdir(local_path):          os.makedirs(local_path)        local_path=os.path.join(local_path,os.path.basename(ftp_path))      #如果本地目錄不存在,則建立目錄      if not os.path.isdir(local_path):        os.makedirs(local_path)      #進入ftp目錄,開始遞迴查詢      self.conn.cwd(ftp_path)      ftp_files = self.conn.nlst()      for file in ftp_files:        local_file = os.path.join(local_path, file)        #如果file ftp路徑是目錄則遞迴上傳目錄(不需要再進行初始化begin的標誌修改為False)        #如果file ftp路徑是檔案則直接上傳檔案        if self._is_ftp_dir(file):          self.get_dir(file,local_file,False)        else:          self.get_file(file,local_file)      #如果當前ftp目錄檔案已經遍歷完畢返回上一層目錄      self.conn.cwd( ".." )      return    else:      print 'ERROR:The dir:%s is not exist' %ftp_path      return  def put_dir(self,local_path,ftp_path='.',begin=True):    ftp_path = ftp_path.rstrip('/')    #當本地目錄存在時上傳    if os.path.isdir(local_path):            #上傳初始化:如果給定的ftp路徑不存在需要建立,同時將本地的目錄存放在給定的ftp目錄下。      #本地目錄下檔案存放的路徑為ftp_path=ftp_path+os.path.basename(local_path)      #例如:將本地資料夾a上傳到ftp的a/b目錄下,則本地a目錄下的檔案將上傳的ftp的a/b/a目錄下      if begin:                if not self._is_ftp_dir(ftp_path):          self.conn.mkd(ftp_path)        ftp_path=os.path.join(ftp_path,os.path.basename(local_path))                #如果ftp路徑不是目錄,則建立目錄      if not self._is_ftp_dir(ftp_path):        self.conn.mkd(ftp_path)      #進入本地目錄,開始遞迴查詢      os.chdir(local_path)      local_files = os.listdir('.')      for file in local_files:        #如果file本地路徑是目錄則遞迴上傳目錄(不需要再進行初始化begin的標誌修改為False)        #如果file本地路徑是檔案則直接上傳檔案        if os.path.isdir(file):                    ftp_path=os.path.join(ftp_path,file)          self.put_dir(file,ftp_path,False)        else:          self.put_file(file,ftp_path)      #如果當前本地目錄檔案已經遍歷完畢返回上一層目錄      os.chdir( ".." )    else:      print 'ERROR:The dir:%s is not exist' %local_path      returnif __name__ == '__main__':  ftp = FTPSync('192.168.1.110')  ftp.login('test','test')  #上傳檔案,不重新命名  #ftp.put_file('111.txt','a/b')  #上傳檔案,重新命名  #ftp.put_file('111.txt','a/112.txt')  #下載檔案,不重新命名  #ftp.get_file('/a/111.txt',r'D:\\')  #下載檔案,重新命名  #ftp.get_file('/a/111.txt',r'D:\112.txt')  #下載到已經存在的資料夾  #ftp.get_dir('a/b/c',r'D:\\a')  #下載到不存在的資料夾  #ftp.get_dir('a/b/c',r'D:\\aa')  #上傳到已經存在的資料夾  ftp.put_dir('b','a')  #上傳到不存在的資料夾  ftp.put_dir('b','aa/B/')

20
最新評論
  • BSA-TRITC(10mg/ml) TRITC-BSA 牛血清白蛋白改性標記羅丹明
  • 春節假期學習日記之Nodejs(06)