将文件名作为参数传递给Python中的exe文件时无法打开文件

时间:2016-03-03 05:17:46

标签: python-2.7 exe

我正在尝试使用' c'运行.exe文件。和输入文件名" input.txt"作为参数。以下是我的代码段:

CREATE TABLE stats
(
    id int,          -- same id as used in the norms table
    sten int,
    percentile int,
    t-score int
);

我收到此错误:

import subprocess
filename = "C:\Python27\\application_rx_example\Debug\\input.txt"
args = "S_example.exe c " + filename
subprocess.call(args, stdout=True, stderr=True, shell=False)

0 个答案:

没有答案