Python批量压缩文件

软件开发大郭
0 评论
/
22 阅读
/
707 字
19 2022-12
分类:

核心功能 - 批量压缩文件

实现代码

import zipfile # zipfile库 压缩文件
import os
import time
 
 
def batch_zip(start_dir):
    start_dir = start_dir #文件路径
    file_news = start_dir + '.zip' # 压缩后文件夹的名字
 
    z = zipfile.ZipFile(file_news, 'w', zipfile.ZIP_DEFLATED)
    for dir_path, dir_names, file_names in os.walk(start_dir):
        #避免从根目录复制
        f_path = dir_path.replace(start_dir, '')
        #压缩所有文件
        f_path = f_path and f_path + os.sep
        for filename in file_names:
            z.write(os.path.join(dir_path, filename), f_path + filename)
     z.close()
     return file_news
 
 
batch_zip('./data/ziptest')
    暂无数据