码迷,mamicode.com
首页 > 编程语言 > 详细

Python - 多次检查后缀名(endwith)

时间:2017-07-15 15:53:06      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:filename   markdown   ade   line   path   add   ide   addclass   with   

在通过后缀名查找类型文件的时候, 多次使用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)

标签:filename   markdown   ade   line   path   add   ide   addclass   with   

原文地址:http://www.cnblogs.com/clnchanpin/p/7182734.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!