我想打开一个我创建的exe,它在Windows的System32文件夹中。我通过以下命令这样做:

subprocess.call(["C:\\Windows\\System32\\ListTest.exe"])

但不知何故 Python 找不到 System32 文件夹。我将我的 exe 复制到 Windows 中的“系统”目录,如果我想通过 Python 在那里打开 exe,一切正常。为什么 Python 找不到 System32 目录?

最佳答案

@eryksun 和 @Keith Hall 给出了正确的答案。

由于我使用的是带有 32 位 python 的 64 位操作系统,因此它看起来在错误的目录中。

system32 = os.path.join(os.environ['SystemRoot'], 'SysNative' if
platform.architecture()[0] == '32bit' else 'System32')
listtest_path = os.path.join(system32, 'ListTest.exe')
subprocess.call([listtest_path])

现在是完整代码

关于Python 找不到 System32,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41630224/

10-08 21:43