Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / v9 / lib / python2.4 / lib-old / find.py
CommitLineData
920dae64
AT
1import fnmatch
2import os
3
4_debug = 0
5
6_prune = ['(*)']
7
8def find(pattern, dir = os.curdir):
9 list = []
10 names = os.listdir(dir)
11 names.sort()
12 for name in names:
13 if name in (os.curdir, os.pardir):
14 continue
15 fullname = os.path.join(dir, name)
16 if fnmatch.fnmatch(name, pattern):
17 list.append(fullname)
18 if os.path.isdir(fullname) and not os.path.islink(fullname):
19 for p in _prune:
20 if fnmatch.fnmatch(name, p):
21 if _debug: print "skip", `fullname`
22 break
23 else:
24 if _debug: print "descend into", `fullname`
25 list = list + find(pattern, fullname)
26 return list