推广 热搜: 公司  快速  上海  中国  未来    企业  政策  教师  系统 

python查找word关键词_Python 在指定的目录下搜索包含关键字的文件

   日期:2024-11-14     作者:xinet    caijiyuan   评论:0    移动:http://zhiwen.bhha.com.cn/news/710.html
核心提示:#-*- coding:gbk -*-'''Created on 2012-3-13@author: Czp'''import osimport shutilclass FindWor

#-*- coding:gbk -*-

python查找word关键词_Python 在指定的目录下搜索包含关键字的文件

'''

Created on 2012-3-13

@author: Czp

'''

import os

import shutil

class FindWord(object):

'''

Find the keyWork in input path

'''

def __init__(self):

'''

Constructor

'''

def _find(self,keyWord,dirName,fileList):

# print 'search ['+dirName+']'

keyWord = unicode(keyWord,'GBK')

for file in fileList:

path = os.path.join(dirName,file)

if os.path.isdir(path) and keyWord in path:

shutil.rmtree(path);

print 'find '+keyWord+' in '+path

def start(self,path,keyWord):

if os.path.exists(path):

os.path.walk(path, self._find, keyWord)

else:

print 'the path not exist'

if __name__=='__main__':

try:

fw = FindWord()

fw.start('D:\Myprogram\backUP','.svn')

except Exception,e:

本文地址:http://i.bhha.com.cn/news/710.html    康宝晨 http://i.bhha.com.cn/ , 查看更多
 
 
更多>同类最新资讯
0相关评论

新闻列表
企业新闻
推荐企业新闻
推荐图文
推荐最新资讯
点击排行
网站首页  |  关于我们  |  联系方式  |  使用协议  |  版权隐私  |  网站地图  |  排名推广  |  广告服务  |  积分换礼  |  网站留言  |  RSS订阅  |  违规举报  |  粤ICP备2023022329号