指定したディレクトリ内にあるファイルで,指定した単語と拡張子を含むものを検索する.
関数呼び出しの際に,拡張子の部分にドット(.)を含むのを忘れないように.
def check_file(path='./',file_name='',ext=''):
import os
import os.path
_ch = os.listdir(path)
ch_e = []
for _ in _ch:
_root, _ext = os.path.splitext(_)
if file_name in _root and _ext == ext:
ch_e.append(_)
else:
pass
return ch_e
ch = check_file(path,'name','.txt')