欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python查找指定文件

程序员文章站 2022-03-25 18:50:19
在当前目录以及当前目录的所有子目录下查找文件名包含指定字符串的文件,并打印出相对路径: ......

在当前目录以及当前目录的所有子目录下查找文件名包含指定字符串的文件,并打印出相对路径:

import os
testfiles = []
testfilepaths = []
l = len(os.path.abspath('.'))

def searchfile(path):
    for item in os.listdir(path):
        if os.path.isdir(os.path.join(path, item)):
            searchfile(os.path.join(path, item))
        else:
            if 'test' in item:
                print(item, path[l:])

searchfile(os.path.abspath('.'))