码迷,mamicode.com
首页 > 其他好文 > 详细

在指定目录下找文件

时间:2017-09-10 11:20:53      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:join   print   and   listdir   关键字   目录文件   子目录   int   目录   

import os

# 查找当前目录下所有包含关键字的文件
def findFile(path, filekw):
    return[os.path.join(path,x) for x in os.listdir(path) if os.path.isfile(x) and os.path.split(x)[1].find(filekw)>-1]


# 获取指定目录下的次级目录
def findDir(path1):
    return[os.path.join(path1,x) for x in os.listdir(path1) if os.path.isdir(x)]



# 遍历所有子目录文件
def listAll(p, k):
    for a in findFile(p,k):
        print(a)
    for b in findDir(p):
        listAll(b,k)

if __name__=="__main__":       
    listAll(‘.‘,‘py‘)

  

在指定目录下找文件

标签:join   print   and   listdir   关键字   目录文件   子目录   int   目录   

原文地址:http://www.cnblogs.com/P3nguin/p/7500277.html

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