摘要: import zipfile def write(): """创建和添加到zip文件""" # 创建压缩文件 new_zip = zipfile.ZipFile('new.zip', 'w') # 和添加到ZIP的文件 new_zip.write('a.txt', compress_type=zip 阅读全文
posted @ 2022-02-14 09:54 fly_bk 阅读(256) 评论(0) 推荐(0) 编辑
摘要: """ shutil(或称为 shell 工具)模块中包含一些函数, 让你在 Python 程序中复制、移动、改名和删除文件 """ import os import shutil cwd = os.getcwd() def copy(): """复制一个文件,返回被复制文件的新名字""" os.m 阅读全文
posted @ 2022-02-14 09:19 fly_bk 阅读(71) 评论(0) 推荐(0) 编辑