2

有人可以告诉我如何在 Python 中设置允许我打开.exe文件的代码吗?文件位置是:

C:\Users\Public\Videos\Sample Videos\New Folder\ksp-win-0-21-1\KSP_win 化妆品模组

该文件称为:

KSP.exe

更短的代码将是首选,但这并不重要。
我不知道这是否会有所作为,但我使用的是 Windows 7 计算机。

4

2 回答 2

4
import subprocess
subprocess.call(["C:\Users\Public\Videos\Sample Videos\New Folder\ksp-win-0-21-1\KSP_win cosmetic mods\KSP.exe"])
于 2013-10-13T21:55:54.597 回答
0

运行 exe 的另一种方法是通过 os.system 命令:

import os
os.system("Path\\to\\file.exe")

os.system 命令将允许您像在命令提示符中一样运行命令。

于 2013-10-13T21:59:36.833 回答