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

Posted simonlin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用python copy目录下所有特定后缀的文件相关的知识,希望对你有一定的参考价值。

python 太好用了

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

 

import os
import shutil

source_path = os.path.abspath(r\'F:\\tool\\\')
target_path = os.path.abspath(r\'D:\\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目录下所有特定后缀的文件的主要内容,如果未能解决你的问题,请参考以下文章

求通过python实现,在指定目录下遍历所有文件,将以.txt为后缀的文件移动到另一指定目录中

C++如何搜索出该程序目录下所有特定后缀名的文件?

python批量重命名指定目录下所有文件的后缀名

python获取指定目录下的所有指定后缀的文件名

删除windows上特定目录下以*.rar后缀名的python脚本

python 文件操作 练习:把一个目录下的所有文件名,打印一下,不要包含后缀名