import shutil 
#复制文件 
shutil.copyfile('listfile.py', 'd:/test.py') 
#复制目录 
shutil.copytree('d:/temp', 'c:/temp/') 
#其余可以参考shutil下的函数 
import shutil
import os
def my_copy(path1,path2,type='file'):
    if type == 'file':
        shutil.copyfile(path1,path2)
        print('文件复制成功')
    elif type == 'dir1':
        shutil.copytree(path1,path2)
        print('目录复制成功')
    return
# 复制test2里面的test文件到day19下面
my_copy('E:\Python学习\day18\\test\\test2\\test','E:\Python学习\day19\\test')
# 复制目录test及其test2及test到文件day19下面,命名:ceshi
my_copy('E:\Python学习\day18\\test','E:\Python学习\day19\ceshi',type='dir1')

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
  • 2021-12-10
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-27
  • 2021-07-06
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
相关资源
相似解决方案