gpt4 book ai didi

Python 没有找到 System32

转载 作者:可可西里 更新时间:2023-11-01 10:33:17 24 4
gpt4 key购买 nike

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

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

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

最佳答案

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

因为我使用的是 64 位操作系统和 32 位 python,所以它看起来在错误的目录中。

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com