码迷,mamicode.com
首页 > 编程语言 > 详细

利用python copy目录下所有特定后缀的文件

时间:2019-04-17 20:56:10      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:for   src   随笔   type   nbsp   logs   遍历   style   tool   

python 太好用了

这一次我想将子目录先所有jpg和pdf文件都copy出来放到一个文件夹,在网上找了个copy全部文件的代码修改一下就搞定了

 

import os
import shutil

source_path = os.path.abspath(rF:\tool\)
target_path = os.path.abspath(rD:\putout)

if not os.path.exists(target_path):
    os.makedirs(target_path)

if os.path.exists(source_path):
    # root 所指的是当前正在遍历的这个文件夹的本身的地址
    # dirs 是一个 list,内容是该文件夹中所有的目录的名字(不包括子目录)
    # files 同样是 list, 内容是该文件夹中所有的文件(不包括子目录)
    for root, dirs, files in os.walk(source_path):
        for file in files:
            if file.find(jpg) > -1 or  file.find(jpeg) > -1 or  file.find(pdf) > -1:
                src_file = os.path.join(root, file)
                shutil.copy(src_file, target_path)
                print(src_file)

print(copy files finished!)

 

参考代码 https://www.cnblogs.com/dazhan/p/9834979.html

 

不过做文件类型判断不严谨,应该用filetype

(前不久还说不发随笔了,打脸)

利用python copy目录下所有特定后缀的文件

标签:for   src   随笔   type   nbsp   logs   遍历   style   tool   

原文地址:https://www.cnblogs.com/simonlin/p/10726030.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!