代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
查找系统盘中需要找的字符
作者:
Grace
/ 发布于
2017/3/9
/
1012
#coding:cp936 import os #保存当前有的磁盘 def existdisk(): curdisks = [] allDisks = ['C:', 'D:', 'E:', 'F:', 'G:', 'H:', 'I:', 'J:', 'K:', \\ 'L:', 'M:', 'N:', 'O:', 'P:', 'Q:', 'R:', 'S:', 'T:', \\ 'U:', 'V:', 'W:', 'X:', 'Y:', 'Z:', 'A:', 'B:'] for disk in allDisks: if os.path.exists(disk): curdisks.append(disk) return curdisks #目录中含有查找的字符 def SearchDirFile(path, src): if not os.path.exists(path): print "%s 路径不存在" % path for root , dirs, files in os.walk(path, True): if - 1 != root.find(src): #路径名中是否存在要查找的字符 print root for item in files: path = os.path.join(root, item) if - 1 != path.find(src): #文件列表中是否有要查找的字符 print path #查找文件内容中有要查找的字符 def SearchFile(path, src): if not os.path.exists(path): print "%s 路径不存在" % path for root, dirs, files in os.walk(path, True): for item in files: path = os.path.join(root, item) try: f = open(path, 'r') for eachline in f.readlines(): if - 1 != eachline.find(src): #文本内容中是否有要查找的字符 print path f.close() break except: pass #查找当前所有磁盘目录下是否有要找的字符 def SearchAllDirFile(src): curdisks = existdisk() for disk in curdisks: disk = disk + '\\' SearchDirFile(disk, src) print "完成搜索" #查找当前所有磁盘目录文件内容下是否有要找的字符 def SearchALLFile(src): curdisks = existdisk() for disk in curdisks: disk = disk + "\\" SearchFile(disk, src) print "完成搜索" SearchALLFile('十进制转二进制')
试试其它关键字
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
Grace
贡献的其它代码
(
13
)
.
查找系统盘中需要找的字符
.
结束进程的方法forceStopPackage
.
@Font-Face模板
.
CSS Blockquote模板
.
仿Redis用来作前端浏览器的数据存储结构
.
九九乘法表
.
鼠标停在控件上就显示提示信息
.
追加或是添加html到元素
.
Rotate DC
.
查看死锁存储过程
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3