Mã sơ bộ
import glob
import fnmatch
import pathlib
import os
pattern = '*.py'
path = '.'
Giải pháp 1 - sử dụng "toàn cầu"
# lookup in current dir
glob.glob(pattern)
In [2]: glob.glob(pattern)
Out[2]: ['wsgi.py', 'manage.py', 'tasks.py']
Giải pháp 2 - sử dụng "os" + "fnmatch"
Biến thể 2.1 - Tra cứu trong thư mục hiện tại
# lookup in current dir
fnmatch.filter(os.listdir(path), pattern)
In [3]: fnmatch.filter(os.listdir(path), pattern)
Out[3]: ['wsgi.py', 'manage.py', 'tasks.py']
Biến thể 2.2 - Tra cứu đệ quy
# lookup recursive
for dirpath, dirnames, filenames in os.walk(path):
if not filenames:
continue
pythonic_files = fnmatch.filter(filenames, pattern)
if pythonic_files:
for file in pythonic_files:
print('{}/{}'.format(dirpath, file))
Kết quả
./wsgi.py
./manage.py
./tasks.py
./temp/temp.py
./apps/diaries/urls.py
./apps/diaries/signals.py
./apps/diaries/actions.py
./apps/diaries/querysets.py
./apps/library/tests/test_forms.py
./apps/library/migrations/0001_initial.py
./apps/polls/views.py
./apps/polls/formsets.py
./apps/polls/reports.py
./apps/polls/admin.py
Giải pháp 3 - sử dụng "pathlib"
# lookup in current dir
path_ = pathlib.Path('.')
tuple(path_.glob(pattern))
# lookup recursive
tuple(path_.rglob(pattern))
Ghi chú:
- Đã thử nghiệm trên Python 3.4
- Mô-đun "pathlib" chỉ được thêm vào trong Python 3.4
- Python 3.5 đã thêm một tính năng để tra cứu đệ quy với global.glob https://docs.python.org/3.5/l Library / glob.html # glob.glob
. Vì máy của tôi được cài đặt với Python 3.4, tôi chưa kiểm tra điều đó.