gpt4 book ai didi

python - 如何在 Python 3.1 中调用 Windows API?

转载 作者:太空狗 更新时间:2023-10-30 00:30:47 29 4
gpt4 key购买 nike

有没有人找到pywin32的版本?对于 python 3.x?最新可用的似乎是 2.6。

或者,我将如何在 Python 3.1 中“滚动我自己的”Windows API 调用?

最佳答案

你应该能够用 ctypes 做任何事情,如果有点麻烦。

这是获取“通用应用程序数据”文件夹的示例:

from ctypes import windll, wintypes

_SHGetFolderPath = windll.shell32.SHGetFolderPathW
path_buf = wintypes.create_unicode_buffer(255)
csidl = 35
_SHGetFolderPath(0, csidl, 0, 0, path_buf)
print(path_buf.value)

结果:

C:\Documents and Settings\All Users\Application Data

关于python - 如何在 Python 3.1 中调用 Windows API?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1057496/

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