美文网首页
(第1坑)查找文件

(第1坑)查找文件

作者: _简姑娘_ | 来源:发表于2020-10-15 22:40 被阅读0次

    题目:找出指定文件夹中的所有以txt结尾的文件,包括所有嵌套的子文件夹。

    import os
    import pprint
    
    def search_file(dst_path):
        txt_list = []
        for root,dirs,files in os.walk(dst_path):
    
            for file in files:
                if file.endswith(".txt"):
                    txt_list.append(file)
    
        return txt_list
    
    if __name__ == "__main__":
        file_path =  "E:\\test"
        pprint.pprint(search_file(file_path))
    

    相关文章

      网友评论

          本文标题:(第1坑)查找文件

          本文链接:https://www.haomeiwen.com/subject/gbkapktx.html