1. 程式人生 > >python-----模糊搜索文件

python-----模糊搜索文件

-- 描述 oda this 模糊搜索 end bsp usr nbsp

  • 告訴計算機文件在哪 → 使用路徑描述位置
  • 描述文件的特征 → 用條件判斷來篩選
  • 比對後打印文件名 → 用循環來實現逐個比對
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2019/1/21 18:57
# @Author  : xiaodai
import os
path = rF:\temp\test
files = os.listdir(path)
for f in files:
    if f.endswith(.png) and fish in f:
        print(Look! I found this \n
+f)

python-----模糊搜索文件