遍历log文件,过滤文件内容,依次生成txt

Posted 南柯南

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历log文件,过滤文件内容,依次生成txt相关的知识,希望对你有一定的参考价值。

import re
import sys
import csv
import os

output=sys.stdout
for file in os.listdir("C:/Users/Administrator/Desktop/Data_tidy/log_orig"):

    with open ("C:/Users/Administrator/Desktop/Data_tidy/log_orig/"+file,r,encoding=UTF-8) as f:

        fileName = re.split(\.,file)
        outputfile=open(C:/Users/Administrator/Desktop/Data_tidy/ios/+fileName[0]+.txt,w)
        #正则表达式体现过滤方式
        pattern = re.compile(r(.*)(-----cpu))
        
        for line in f:
            m=pattern.match(line)
            sys.stdout=outputfile
            if(m is not None):
                print (line,end =  )

    outputfile.close()

sys.stdout=output

 

以上是关于遍历log文件,过滤文件内容,依次生成txt的主要内容,如果未能解决你的问题,请参考以下文章

遍历文本文件并调用Python脚本生成文件中

提取文件夹中所有xml文件中的数据到txt(为人脸识别级联器使用的txt做准备)

php把生成的文件存放在指定目录

adb logcat 通过包名过滤日志并输出到txt文件

git提交代码时,Unstaged changes如何过滤.class .log等文件

C#中 xml文件遍历?