Ön kod
import glob
import fnmatch
import pathlib
import os
pattern = '*.py'
path = '.'
Çözüm 1 - "Glob" kullanın
# lookup in current dir
glob.glob(pattern)
In [2]: glob.glob(pattern)
Out[2]: ['wsgi.py', 'manage.py', 'tasks.py']
Çözüm 2 - "OS" + "fnmatch" kullanın
Varyant 2.1 - Şu anki yön arama
# 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']
Varyant 2.2 - Yinelemeli arama
# 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))
Sonuç
./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
Çözüm 3 - "Pathlib" Kullanın
# lookup in current dir
path_ = pathlib.Path('.')
tuple(path_.glob(pattern))
# lookup recursive
tuple(path_.rglob(pattern))
Notlar:
- Python 3.4 üzerinde test edildi
- "Pathlib" modülü sadece Python 3.4'e eklendi
- Python 3.5, glob.glob https://docs.python.org/3.5/library/glob.html#glob.glob ile özyinelemeli arama için bir özellik ekledi
. Makinem Python 3.4 ile kurulduğundan, bunu test etmedim.