摘要: import os import shutil def copy_file(src_file, dst_file): # 如果是文件,进行复制 if os.path.isfile(src_file): _dir = os.path.dirname(dst_file) os.makedirs(_dir 阅读全文
posted @ 2024-12-02 14:19 二月雪 阅读(4) 评论(0) 推荐(0) 编辑