有二十个文件夹,每个文件夹下面有若干txt文件,使用python提取这些txt文件的特定字符串

时间:2024-10-22 22:23:29
  • import os
  • # 定义函数来处理单个txt文件并提取特定字符串
  • def extract_string(file_path):
  • with open(file_path, 'r') as f:
  • content = ()
  • # 在字符串中查找特定的子字符串
  • result = ('特定字符串')
  • if result != -1:
  • # 如果找到了特定字符串,返回文件路径和位置
  • return f'在文件{file_path}中找到了特定字符串,位置为{result}。'
  • else:
  • # 如果未找到特定字符串,返回空字符串
  • return ''
  • # 遍历所有文件夹和文件,并提取特定字符串
  • root_dir = '根目录路径'
  • for dir_name in (root_dir):
  • dir_path = (root_dir, dir_name)
  • if (dir_path):
  • # 如果是文件夹,遍历文件夹内的所有txt文件并处理
  • for file_name in (dir_path):
  • if file_name.endswith('.txt'):
  • file_path = (dir_path, file_name)
  • # 调用extract_string()函数来提取特定字符串
  • result = extract_string(file_path)
  • if result:
  • print(result)