CSDN博客地址
摘要: shutilcopy(文件1, 文件2): 直接用文件名进行覆盖,文件及权限都进行了copy: import shutil shutil.copy("test1", "test2") shutil.copyfileobj(file1, file2):将文件1的数据覆盖给文件2: import shu 阅读全文
posted @ 2020-02-18 20:23 Yi_warmth 阅读(194) 评论(0) 推荐(0) 编辑
CSDN博客地址