无法用os.execl()提及配置文件的路径

时间:2015-07-07 02:24:06

标签: python

以下是我要执行的代码:

os.execl('executable','--configurations', 'path-to-conf-file')

路径到conf文件没有得到尊重。我也试过了

os.execl('executables','--configurations path-to-conf-file')

但它不起作用。

1 个答案:

答案 0 :(得分:1)

也许,您需要将其更改为:

os.execl(sys.executables,'--configurations','path-to-conf-file')