摘要: import os import zipfile def zipDir(dirpath): """ 压缩指定文件夹 :param dirpath: 目标文件夹路径 """ outFullName = dirpath + '.zip' zip = zipfile.ZipFile(outFullName 阅读全文
posted @ 2020-02-29 14:34 wztshine 阅读(374) 评论(0) 推荐(0) 编辑