假设我有一个文件RegressionSystem.exe
。我想用一个-config
参数执行这个可执行文件。命令行应该是这样的:
RegressionSystem.exe -config filename
我试过像:
regression_exe_path = os.path.join(get_path_for_regression,'Debug','RegressionSystem.exe')
config = os.path.join(get_path_for_regression,'config.ini')
subprocess.Popen(args=[regression_exe_path,'-config', config])
但它没有用。