使用Python查找目录下特定后缀名的文件

目标:使用Python查找目录下特定后缀名的文件

经常会遇到在目录下过滤特定后缀名的文件的需求。自己总结下面两个方法:

第一种方法、比较常规:代码如下

#!/usr/bin/python
 
def endWith(s,*endstring):
        array = map(s.endswith,endstring)
        if True in array:
                return True
        else:
                return False
 
if __name__ == '__main__':
        import os
        s = os.listdir('/root/')
        f_file = []
        for i in s:
                if endWith(i,'.txt','.py'):
                        print i,

使用Python查找目录下特定后缀名的文件

执行结果如下:

使用Python查找目录下特定后缀名的文件

第二种方法:个人比较倾向这种方法,这种方法可定制性更强,代码如下:

#!/usr/bin/python
def endWith(*endstring):
        ends = endstring
        def run(s):
                f = map(s.endswith,ends)
                if True in f: return s
        return run
 
if __name__ == '__main__':
        import os
 
        list_file = os.listdir('/root')
        a = endWith('.txt','.py')
        f_file = filter(a,list_file)
        for i in f_file: print i,

使用Python查找目录下特定后缀名的文件

执行结果如下:

使用Python查找目录下特定后缀名的文件

Python:在指定目录下查找满足条件的文件 

Python2.7.7源码分析 

无需操作系统直接运行 Python 代码 

CentOS上源码安装Python3.4 

《Python核心编程 第二版》.(Wesley J. Chun ).[高清PDF中文版]

《Python开发技术详解》.( 周伟,宗杰).[高清PDF扫描版+随书视频+代码]

Python脚本获取Linux系统信息

Ubuntu下用Python搭建桌面算法交易研究环境

Python 语言的发展简史

Python 的详细介绍请点这里
Python 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/b8694bc32e196d31478ea5eb7347a82b.html