python 模块fnmatch

fnmatch 模块下的 fnmatch() 函数要求两个参数:文件名,以及文件名模式,返回的是布尔值。文件名模式中,支持 * 符号匹配任意字符。结合列表生成式,我们就可以快速过滤出符合条件的文件名了。

from fnmatch import fnmatch
path='...'
files = os.listdir(path)
deps = [i for i in files if fnmatch(i, "*共同内容.xlsx")]
print(deps)
上一篇:vim 修改环境变量时报错:.bash_profile" E667: Fsync failed && write error in swap file


下一篇:Python Linux系统管理之查找文件