Python遍历目录及子目录并将其中的文件复制到指定目录

时间:2021-01-30 12:40:27

  1. #!/usr/bin/env python  
  1. # _*_coding:utf-8 _*_  
  1.   
  1. import os, shutil  
  1.   
  1. # 规范化绝对路径  
  1. src_dir = os.path.abspath(r"I:\ADNI_DeepLearning\ADNI1 Annual 2 Yr 3T\MCI")  
  1. dst_dir = os.path.abspath(r"I:\ADNI_DeepLearning_Copy\MCI")  
  1.   
  1. if not os.path.exists(dst_dir):  
  1.     os.makedirs(dst_dir)  
  1. # print("fistr_dir is:\t{}".format(fistr_dir))  
  1.   
  1. if os.path.exists(src_dir):  
  1.     # root 所指的是当前正在遍历的这个文件夹的本身的地址  
  1.     # dirs 是一个 list,内容是该文件夹中所有的目录的名字(不包括子目录)  
  1.     # files 同样是 list, 内容是该文件夹中所有的文件(不包括子目录)  
  1.     for root,dirs,files in os.walk(src_dir):  
  1.         for file in files:  
  1.             src_file = os.path.join(root, file)  
  1.             shutil.copy(src_file, dst_dir)  
  1.             print(src_file)  
  1.   
  1. print('congratulations!')