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