Python可以在操作系统的指定路径中搜索文件名。这可以通过带有walk()
方法的模块os来完成。这将以一个特定的路径作为输入,并生成一个包含元目录,目录名和文件名的三元组。
在下面的示例中,我们从名为“ D:\”的根目录开始搜索名为smpl.htm的文件。os.walk()函数搜索整个目录及其每个子目录以找到该文件。结果,我们看到该文件同时存在于主目录和子目录中。我们正在Windows OS中运行该程序。
import os def find_files(filename, search_path): result = [] # Wlaking top-down from the root for root, dir, files in os.walk(search_path): if filename in files: result.append(os.path.join(root, filename)) return result print(find_files("smpl.htm","D:"))
输出结果
运行上面的代码给我们以下结果-
['D:TP\\smpl.htm', 'D:TP\\spyder_pythons\\smpl.htm']