使用python搜索目录中的html文件

时间:2014-06-26 17:25:37

标签: python html search path directory

我有一个html解析器函数,它需要每个文件的绝对路径。

如何搜索目录并仅查找以.html结尾的文件,然后返回每个文件的绝对路径?

1 个答案:

答案 0 :(得分:1)

您是否考虑过使用python os模块?它有listdir(路径)命令

os.listdir(path)
Return a list containing the names of the entries in the directory given by path. The list is in arbitrary order. It does not include the special entries '.' and '..' even if they are present in the directory.

Availability: Unix, Windows. 

使用它来获取目录中的所有文件名,过滤掉非html文件,然后在路径前添加路径以获取绝对路径。 https://docs.python.org/2/library/os.html