博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python模糊查找匹配 文件 文件名 并列出来
阅读量:6604 次
发布时间:2019-06-24

本文共 266 字,大约阅读时间需要 1 分钟。

详细如下:

#!/usr/bin/python# -*- coding: utf-8 -*-import ospathlog = "/usr/local/nginx/log"files = os.listdir(pathlog)for f in files:    if 'stat' in f and f.endswith('.log'):        print ("Found it! " + f)

运行结果就是查询到的结果

本文参考:

转载于:https://blog.51cto.com/weiruoyu/2347241

你可能感兴趣的文章
【函数】01、函数基础
查看>>
总结培训心得
查看>>
重载(overload)、覆盖(override)、隐藏(hide)的区别
查看>>
leetCode 189. Rotate Array 数组
查看>>
我的友情链接
查看>>
二惠竞爽,风雪庆贺佳途
查看>>
strspn()—字符查找函数
查看>>
NFS 服务器的部署
查看>>
人员登入5---实现登入
查看>>
解决chrome和IE下字号不一样现象
查看>>
Apache--SSI 服务器端包含
查看>>
加密和解密 tar
查看>>
我的友情链接
查看>>
[李景山php]每天TP5-20161216|thinkphp5-helper.php-1
查看>>
puppet案例解析
查看>>
VMware、Workstation 使用
查看>>
LDAP 与 MySql 连用 的JPA事物问题
查看>>
项目经理面试1
查看>>
zabbix监控
查看>>
VDI序曲六 虚拟池虚拟机自动化配置
查看>>