# -*- coding:utf-8 -*-
"""
作者:孙敏
日期:2022年01月27日
"""
import re
import datetime
# 添加以日期为文件夹命名的文件夹名称,例如2022-01-27的文件夹名称是20220127
today = datetime.date.today()
todaytime = str(today)
number = re.findall(r"\d+",todaytime)
foldername = str(number[0])+str(number[1])+str(number[2])
print(foldername)
# 输入需要查询的文件可变的名称部分,以列表展现,遍历查询每个需要查询的文件,可填多个或一个,根据具体场景而定
productlist = [
't_testone_'+foldername,
't_testtwo_'+foldername]
for x in productlist:
path = 'D:\测试\\' + foldername + '\\'+x+'.txt'#加双斜杠的作用是去除转义符的作用,使之成为普通的符号
result = open(path, 'r', encoding='utf-8')
a = result.read()
b=re.findall("test",a)
c=0
for y in b:
c=c+1
c=str(c)
print(x+'中'+y+'对应的匹配数量:'+c)