1
摘要: #### 将某目录符合一定要求的文件复制到其他目录 ``` import shutil def copy_files(src_dir, dst_dir): if not os.path.exists(dst_dir): os.makedirs(dst_dir) if os.path.exists(s 阅读全文
posted @ 2023-05-22 17:21 Bonne_chance 阅读(50) 评论(0) 推荐(0) 编辑
1