cpython/Lib/glob.py

43 lines
965 B
Python
Raw Normal View History

1991-01-02 02:17:49 +08:00
# Module 'glob' -- filename globbing.
1992-01-13 07:26:24 +08:00
import os
1991-01-02 02:17:49 +08:00
import fnmatch
1992-01-13 07:26:24 +08:00
1991-01-02 02:17:49 +08:00
def glob(pathname):
if not has_magic(pathname): return [pathname]
1992-01-13 07:26:24 +08:00
dirname, basename = os.path.split(pathname)
1991-01-02 02:17:49 +08:00
if has_magic(dirname):
list = glob(dirname)
else:
list = [dirname]
if not has_magic(basename):
result = []
for dirname in list:
1992-01-13 07:26:24 +08:00
if basename or os.path.isdir(dirname):
name = os.path.join(dirname, basename)
if os.path.exists(name):
1991-01-02 02:17:49 +08:00
result.append(name)
else:
result = []
for dirname in list:
sublist = glob1(dirname, basename)
for name in sublist:
1992-01-13 07:26:24 +08:00
result.append(os.path.join(dirname, name))
1991-01-02 02:17:49 +08:00
return result
def glob1(dirname, pattern):
1992-01-13 07:26:24 +08:00
if not dirname: dirname = os.curdir
1991-01-02 02:17:49 +08:00
try:
1992-01-13 07:26:24 +08:00
names = os.listdir(dirname)
except os.error:
1991-01-02 02:17:49 +08:00
return []
result = []
for name in names:
1992-01-02 03:35:13 +08:00
if name[0] <> '.' or pattern[0] == '.':
1991-01-02 02:17:49 +08:00
if fnmatch.fnmatch(name, pattern): result.append(name)
return result
def has_magic(s):
return '*' in s or '?' in s or '[' in s