import subprocess
执行bat文件
subprocess.Popen(r"path\to\点我运行CTS.bat", stdin=subprocess.PIPE)
向bat文件输入命令
process = subprocess.Popen(r"path\to\点我运行CTS.bat", stdin=subprocess.PIPE)
process.stdin.write(b"run cts\n")
import os
import re
搜索指定文件夹下所有符合条件的文件
def search_files(dir_path, file_suffix):
for root, dirs, files in os.walk(dir_path):
for file in files:
if file.endswith(file_suffix):
yield os.path.join(root, file)
查找指定目录下含有关键字的xml文件并将结果保存至指定位置
def find_and_save_files(dir_path, keyword, output_path):
result = []
for file_path in search_files(dir_path, ‘.xml’):
with open(file_path, ‘r’, encoding=‘utf-8’) as f:
content = f.read()
if keyword in content:
result.append(file_path)
with open(output_path, ‘w’) as f:
f.write(‘\n’.join(result))
示例代码,搜索"D:\example"目录下所有xml文件中包含"keyword"关键字的文件并将结果保存到D盘sd文件夹下的output.txt文档中
find_and_save_files(r’D:\example’, ‘keyword’, r’D:\sd\output.txt’)
想抓取运行完D盘的ca文件夹下的bat文件后生成的D盘下的gh文件夹下的以生成时间命名的文件夹下的xml文件中的关键字,并输出到D盘的sd文件夹下形成文档
import os
import re
获取指定目录下最新生成的文件夹名称
def get_newest_dir(dir_path):
dirs = [d for d in os.listdir(dir_path) if os.path.isdir(os.path.join(dir_path, d))]
newest_dir = max(dirs, key=lambda d: os.path.getctime(os.path.join(dir_path, d)))
return os.path.join(dir_path, newest_dir)
搜索指定文件夹下所有符合条件的文件
def search_files(dir_path, file_suffix):
for root, dirs, files in os.walk(dir_path):
for file in files:
if file.endswith(file_suffix):
yield os.path.join(root, file)
查找指定目录下含有关键字的xml文件并将结果保存至指定位置
def find_and_save_files(dir_path, keyword, output_path):
result = []
for file_path in search_files(dir_path, ‘.xml’):
with open(file_path, ‘r’, encoding=‘utf-8’) as f:
content = f.read()
if keyword in content:
result.append(file_path)
with open(output_path, ‘w’) as f:
f.write(‘\n’.join(result))
示例代码,查找D:\ca目录下最新生成的文件夹中所有xml文件中包含"keyword"关键字的文件,并将结果保存到D:\sd\output.txt文档中
newest_dir = get_newest_dir(r’D:\ca’)
find_and_save_files(os.path.join(newest_dir, ‘gh’), ‘keyword’, r’D:\sd\output.txt’)
import os
import re
获取指定目录下最新生成的文件夹名称
def get_newest_dir(dir_path):
dirs = [d for d in os.listdir(dir_path) if os.path.isdir(os.path.join(dir_path, d))]
newest_dir = max(dirs, key=lambda d: os.path.getctime(os.path.join(dir_path, d)))
return os.path.join(dir_path, newest_dir)
搜索指定文件夹下所有符合条件的文件
def search_files(dir_path, file_suffix):
for root, dirs, files in os.walk(dir_path):
for file in files:
if file.endswith(file_suffix):
yield os.path.join(root, file)
查找指定目录下含有关键字的xml文件并将结果保存至指定位置
def find_and_save_files(dir_path, keyword, output_path):
result = []
for file_path in search_files(dir_path, ‘.xml’):
with open(file_path, ‘r’, encoding=‘utf-8’) as f:
content = f.read()
if keyword in content:
result.append(file_path)
with open(output_path, ‘w’) as f:
f.write(‘\n’.join(result))
示例代码,查找D:\ca目录下最新生成的文件夹中所有xml文件中包含"keyword"关键字的文件,并将结果保存到D:\sd\output.txt文档中
newest_dir = get_newest_dir(r’D:\ca’)
find_and_save_files(os.path.join(newest_dir, ‘gh’), ‘keyword’, r’D:\sd\output.txt’)
其中get_newest_dir函数用于获取指定目录下最新生成的文件夹名称;search_files函数和find_and_save_files函数与之前的示例代码相同。示例代码中,首先调用get_newest_dir函数获取D:\ca目录下最新生成的文件夹的路径,然后查找该文件夹中所有符合条件的xml文件,并筛选出包含指定关键字的文件,最后将结果保存至指定位置。你可以修改这个函数以适应你的具体需求。