Gitiles
Code Review
Sign In
gerrit.opencord.org
/
xos
/
701fcb0ef548cc957bddcc6d1efe6cb99423d498
/
.
/
planetstack
/
util
/
glob.py
blob: 833ce358c6166b271f37186a055875caa0c645d8 [
file
] [
log
] [
blame
]
import
os
,
fnmatch
def
recursive_glob
(
treeroot
,
pattern
):
results
=
[]
for
base
,
dirs
,
files
in
os
.
walk
(
treeroot
):
goodfiles
=
fnmatch
.
filter
(
files
,
pattern
)
results
.
extend
(
os
.
path
.
join
(
base
,
f
)
for
f
in
goodfiles
)
return
results