摘要: # 递归检测文件文件是否存在,存在则重命名文件 def check_file_exists(check_file, original_file=None, num=1): if os.path.exists(check_file): original_file = original_file if 阅读全文
posted @ 2024-11-22 17:32 二月雪 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 压缩 1、自定义公共函数zip_files_and_dirs import os import zipfile # 递归检测文件文件是否存在,存在则重命名文件 def check_file_exists(check_file, original_file=None, num=1): if os.pa 阅读全文
posted @ 2024-11-22 16:38 二月雪 阅读(6) 评论(0) 推荐(0) 编辑