匹配当前目录指定后缀的文件名

 

打印所有以.txt为结尾的文件名称

import fnmatch
import os

for file in os.listdir('.'):
    if fnmatch.fnmatch(file, '*.txt'):
        print(file)

 

posted @ 2018-11-22 17:41  anobscureretreat  阅读(403)  评论(0编辑  收藏  举报