我目前在 Windows 7 64 位机器上使用 python 2.7.3(也在 Linux 32 位、Ubuntu 12.04 中开发)并且在让 python 与命令提示符/终端成功通信时遇到了奇怪的困难。我的代码如下所示:
import subprocess, logging, platform, ctypes
class someClass (object):
def runTerminalCommand:
try:
terminalOrCmdLineCommand = self.toString()
process = subprocess.Popen(terminalOrCmdLineCommand, shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE)
output = process.stdout.readlines()
if len(output) < 1:
logging.exception("{} error : {}".format(self.cmd,process.stderr.readlines()))
raise ConfigError("cmd issue : {}".format(self.cmd))
return output
except ValueError as err:
raise err
except Exception as e:
logging.exception("Unexpected error : " + e.message)
raise ConfigError("unexpected error")
现在,我知道如果我手动输入 self.toString() 返回的值将正确处理,因此我将其限制为我如何通过子进程将其发送到命令行的问题。我已经阅读了文档,发现 subprocess.check_call() 如果遇到错误不会返回任何内容,所以我正在使用 .Popen()
我得到的例外是,
[date & time] ERROR: Unexpected error :
Traceback (most recent call last):
File "C:\[...]"
raise ConfigError("cmd issue : {}".format(self.cmd))
"ConfigError: cmd issue : [the list self.cmd printed out]"
我正在尝试做的是运行命令,然后读回输入。但我似乎无法自动执行我想要运行的呼叫。:(
有什么想法吗?(如果我遗漏了任何需要的细节,请告诉我)
非常感谢,提前。