blob: 39ad7717e8af54328c2da92d5ceb261cd7f463ea [file] [log] [blame]
Guido van Rossum7e4b2de1995-01-27 02:41:45 +00001import fnmatch
2import os
3
4_debug = 0
5
6_prune = ['(*)']
7
8def find(pattern, dir = os.curdir):
Tim Peters182b5ac2004-07-18 06:16:08 +00009 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