python读取配置文件并运行exe_Python读取配置文件
时间: 2024-01-19 21:02:02 浏览: 132
可以使用Python的ConfigParser模块读取配置文件,然后使用subprocess模块运行exe程序。
以下是一个示例代码:
```python
import configparser
import subprocess
# 读取配置文件
config = configparser.ConfigParser()
config.read('config.ini')
# 获取配置信息
exe_path = config.get('exe', 'path')
exe_args = config.get('exe', 'args')
# 运行exe程序
subprocess.run([exe_path, exe_args])
```
其中,config.ini是配置文件的文件名,exe是配置文件的一个section,path是exe文件的路径,args是运行exe时的参数。这些信息都可以根据自己的实际情况进行修改。
阅读全文