python實現批量提取指定文件夾下同類型文件

本文通過實例為大傢分享瞭python實現批量提取指定文件夾下同類型文件,供大傢參考,具體內容如下

代碼

import os
import shutil


def take_samefile(or_path, tar_path, tar_type):
 tar_path = tar_path
 if not os.path.exists(tar_path):
 os.makedirs(tar_path)
 path = or_path
 files = os.listdir(path) # 讀取or_path文件列表
 for file in files:
 file_type = str(file).split('.')[1] # 讀取文件後綴
 if file_type == tar_type:
  print("take{}from{}".format(file, files))
  dir = path + '/' + file # 存儲文件路徑
  deter = tar_path + '/' + str(file)
  shutil.copyfile(dir, deter)


if __name__ == "__main__":
 take_samefile(r"", r"", "")

運行結果

運行前(原始文件夾)

運行過程

運行後

以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。

推薦閱讀:

    None Found