Python实现的本地文件搜索功能示例【测试可用】
作者:shw800 时间:2022-04-20 06:11:10
本文实例讲述了Python实现的本地文件搜索功能。分享给大家供大家参考,具体如下:
偶尔需要搜索指定文件,不想每次都在windows下面去搜索,想用代码来实现搜索,而且能够收集搜索结果,于是有了下面的代码。
# -*- coding:utf-8 -*-
#! python2
import os
def search_file(fileNmae, path):
'''search a file in target directory
:param fileNmae: file to be searched
:param path: search scope
:return:file list
'''
flag = False
count = 0
result_list = []
if os.path.exists(path):
for root, dirs, files in os.walk(path):
for fn in files:
Name = fn.decode('gbk')
cu_path = root.encode('gbk')+"\\"+Name
if Name.lower().find(fileNmae.lower()) != -1 and os.path.isfile(cu_path):
print ":::Find it,file no", count+1, ":", cu_path
flag = True
count += 1
result_list.append(cu_path)
if flag is False:
print ":::Not found the file:", fileNmae, "in path:", path
else:
print "======== Get[", count, "]files ========"
return result_list
else:
print "!!-----path not existed:", path
#测试:
search_file("4.jpg", "C:\\img")
运行结果:
更多Python相关内容感兴趣的读者可查看本站专题:《Python文件与目录操作技巧汇总》、《Python编码操作技巧总结》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》及《Python入门与进阶经典教程》
希望本文所述对大家Python程序设计有所帮助。
来源:https://blog.csdn.net/shw800/article/details/46443613
标签:Python,文件搜索
0
投稿
猜你喜欢
Python3使用requests发闪存的方法
2021-06-09 16:07:20
Python 条件判断的缩写方法
2021-04-20 16:06:20
CentOS安装SQL Server vNext CTP1教程
2024-01-27 22:16:26
基于python的Tkinter编写登陆注册界面
2022-12-20 09:44:30
SQL子查询全接触
2007-08-20 10:51:00
Python导入Excel表格数据并以字典dict格式保存的操作方法
2023-05-25 17:58:37
Ajax标签导航效果
2013-07-17 02:02:16
python编程-将Python程序转化为可执行程序[整理]
2022-10-28 03:48:43
基于Token的身份验证之JWT基础教程
2023-06-22 10:58:20
JavaScript常用数学函数用法示例
2024-04-10 16:14:21
Go语言实战之实现一个简单分布式系统
2024-05-05 09:33:56
文档标准的真实谎言
2008-06-02 10:46:00
Python 匹配任意字符(包括换行符)的正则表达式写法
2023-01-23 23:11:09
git 优雅的撤销中间某次提交方法
2023-12-27 11:12:50
python深度学习人工智能BackPropagation链式法则
2023-07-17 12:23:07
SqlServer2016模糊匹配的三种方式及效率问题简析
2024-01-22 09:45:59
快速掌握 Mysql数据库对文件操作的封装
2009-02-23 17:37:00
PHP伪静态页面函数附使用方法
2023-11-22 06:25:42
asp如何选择访问速度最快的站点?
2010-06-10 18:34:00
python打包压缩、读取指定目录下的指定类型文件
2021-01-19 08:23:26