在Python中,可以使用subprocess
模块来执行CMD命令并处理错误
import subprocess
def run_cmd_command(command):
try:
# 执行CMD命令
result = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, check=True)
# 打印命令输出
print("Command output:", result.stdout)
except subprocess.CalledProcessError as e:
# 捕获命令错误
print("Error occurred while running the command:", e)
print("Error output:", e.stderr)
if __name__ == "__main__":
cmd_command = "your_cmd_command_here" # 请替换为你要执行的CMD命令
run_cmd_command(cmd_command)
在这个示例中,我们定义了一个名为run_cmd_command
的函数,它接受一个CMD命令作为参数。我们使用subprocess.run()
函数来执行命令,并将stdout
和stderr
参数设置为subprocess.PIPE
以便捕获命令输出。text
参数设置为True
以便以文本模式处理输出。check
参数设置为True
以便在命令返回非零退出状态时引发subprocess.CalledProcessError
异常。
在try
块中,我们执行命令并打印输出。在except
块中,我们捕获subprocess.CalledProcessError
异常并打印错误信息。