运行 来自 Python 中特定位置的 exe 文件
Running an exe file from a specific location in Python
我想创建一个 python(我使用的是 3.6.2,但如果有较新版本的解决方案,我很乐意更新)程序,它会从列表中随机选择一个游戏游戏标题和 运行s 游戏的 .exe。但是,我不知道如何从特定文件夹位置 运行 .exe 文件,即 C:Program 文件
基本上你需要做的是:
(你需要导入glob, random and os
)
- 查找
file_list = glob.glob("path/to/folder/*.exe")
文件夹中的所有.exe
- Select一个随机元素
game = random.choice(file_list)
- 运行这
os.startfile(game)
所以:
import glob
import random
import os
file_list = glob.glob("path/to/folder/*.exe")
game = random.choice(file_list)
os.startfile(game)
我想创建一个 python(我使用的是 3.6.2,但如果有较新版本的解决方案,我很乐意更新)程序,它会从列表中随机选择一个游戏游戏标题和 运行s 游戏的 .exe。但是,我不知道如何从特定文件夹位置 运行 .exe 文件,即 C:Program 文件
基本上你需要做的是:
(你需要导入glob, random and os
)
- 查找
file_list = glob.glob("path/to/folder/*.exe")
文件夹中的所有.exe
- Select一个随机元素
game = random.choice(file_list)
- 运行这
os.startfile(game)
所以:
import glob
import random
import os
file_list = glob.glob("path/to/folder/*.exe")
game = random.choice(file_list)
os.startfile(game)