溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python3 統(tǒng)計 ftp 文件個數(shù)和大小

發(fā)布時間:2020-06-20 16:11:47 來源:網(wǎng)絡(luò) 閱讀:2493 作者:RQSLT 欄目:編程語言

【背景】

    本程序遍歷 ftp 目錄,列出單個文件大小,統(tǒng)計目錄個數(shù)、文件個數(shù)、文件總大小。目的是在批量下載 FTP 文件時,不嚴格的驗證下載結(jié)果的正確性。 


【環(huán)境】

    Windows10 下 Python 3.6.5,第三方包 ftputil 3.4。


【ftp_stat】

# encoding: utf-8
# author: walker
# date: 2018-10-12
# summary: 遍歷 ftp 目錄,列出單個文件大小,統(tǒng)計目錄個數(shù)、文件個數(shù)、文件總大小。

import time
import ftputil

FtpHost = r'ftp.ncbi.nlm.nih.gov'  # FTP 主機
SubDir = r'/pubmed/baseline/'   # 最后的斜線有無不影響,根目錄用單斜線即可
FtpUser = r'anonymous'        
FtpPwd = r'' 
FtpEncoding = r'utf-8'

def Main():
    r"""
        遍歷 ftp 目錄,列出單個文件大小,統(tǒng)計目錄個數(shù)、文件個數(shù)、文件總大小。
    """
    fileCnt = 0
    fileSize = 0
    dirCnt = 0
    with ftputil.FTPHost(host=FtpHost, user=FtpUser, passwd=FtpPwd) as host:
        for parent, dirnames, filenames in host.walk(SubDir):
            for filename in filenames:
                fileCnt += 1
                pathfile = host.path.join(parent, filename)
                singleFileSize = host.path.getsize(pathfile)
                fileSize += singleFileSize
                print('\tfile: %s, %d bytes' %
                      (pathfile.encode('latin-1').decode(FtpEncoding), singleFileSize))

            for dirname in dirnames:
                dirCnt += 1
                pathdir = host.path.join(parent, dirname)
                print('\tdir: %s' % pathdir.encode(
                    'latin-1').decode(FtpEncoding))

            print('fileCnt: %d, fileSize: %d B/%.2f KB/%.2f MB/%.2f GB, dirCnt: %d'
                  % (fileCnt, fileSize, fileSize/1024, fileSize/1024/1024, fileSize/1024/1024/1024, dirCnt))

    print('fileCnt: %d, fileSize: %d B/%.2f KB/%.2f MB/%.2f GB, dirCnt: %d'
          % (fileCnt, fileSize, fileSize/1024, fileSize/1024/1024, fileSize/1024/1024/1024, dirCnt))


if __name__ == '__main__':
    Main()
    print('current time: %s\n'
          % time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()))


【相關(guān)閱讀】

  • Python3 備份 MySQL/MariaDB(本地+FTP)

  • FTP 服務(wù)端:pyftpdlib

  • FTP 同步:  pyftpsync

  • 最好的 FTP 客戶端軟件: FileZilla


*** walker ***


向AI問一下細節(jié)

免責聲明:本站發(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)容。

AI