我如何使用 os.walk (或任何其他方式)以某种方式进行搜索,以便我可以在根目录下具有特定模式的目录下找到具有特定名称的文件
我的意思是,如果我有一个目录 d:\installedApps,在该目录下我有 a.ear、b.ear、... x.ear、y.ear、z.ear 目录以及同一级别的其他目录,我想只在根目录下的*.ear子目录下搜索文件模式web*.xml,而不遍历其他同级目录,我该怎么做?
我尝试了各种方法(一些使用此站点上的其他示例,例如 walklevel 示例等),但没有得到我想要的结果。
更新
我尝试使用此站点的 walkdepth 代码片段并尝试将其组合在嵌套循环中,但这不起作用
这是我试过的代码
import os, os.path
import fnmatch
def walk_depth(root, max_depth):
print 'root in walk_depth : ' + root
# some initial setup for getting the depth
root = os.path.normpath(root)
depth_offset = root.count(os.sep) - 1
for root, dirs, files in os.walk(root, topdown=True):
yield root, dirs, files
# get current depth to determine if we need to stop
depth = root.count(os.sep) - depth_offset
if depth >= max_depth:
# modify dirs so we don't go any deeper
dirs[:] = []
for root, dirs, files in walk_depth('D:\installedApps', 5):
for dirname in dirs:
if fnmatch.fnmatch(dirname, '*.ear'):
print 'dirname : ' + dirname
root2 = os.path.normpath(dirname)
for root2, dir2, files2 in walk_depth(root2, 5):
for filename in files2:
if fnmatch.fnmatch(filename, 'webservices.xml'):
print '\tfilename : ' + filename