Python - 多次检查后缀名(endwith)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python - 多次检查后缀名(endwith)相关的知识,希望对你有一定的参考价值。
在通过后缀名查找类型文件的时候, 多次使用endwith, 使用元组(tuple), 简化操作.
此类方式, 也能够应用于if语句多次类似检測.
代码
# 列出目录内全部代码
def list_dictionary_codes(root_dir):
paths_list = []
for parent, dirNames, fileNames in os.walk(root_dir):
for name in fileNames:
ext = [‘.h‘, ‘.m‘, ‘.xib‘, ‘.json‘, ‘.c‘, ‘.cpp‘, ‘.mm‘, ‘.md‘]
if name.endswith(tuple(ext)):
paths_list.append(os.path.join(parent, name))
return paths_list
以上是关于Python - 多次检查后缀名(endwith)的主要内容,如果未能解决你的问题,请参考以下文章
java上传视频除了检查后缀,怎么判断文件格式,前8位来判断.flv格式有的00000018有的464C5601可靠么?求解