gpt4 book ai didi

python - 你如何获得 "My Documents"的确切路径?

转载 作者:太空狗 更新时间:2023-10-29 17:31:43 26 4
gpt4 key购买 nike

在 C++ 中,获取 shell 在 Windows XP 和 Windows 7 中称为“我的文档”以及在 Vista 中称为“文档”的文件夹的完整路径名并不难;见Get path to My Documents

有没有在 Python 中执行此操作的简单方法?

最佳答案

您可以使用 ctypes 模块获取“我的文档”目录:

import ctypes
from ctypes.wintypes import MAX_PATH

dll = ctypes.windll.shell32
buf = ctypes.create_unicode_buffer(MAX_PATH + 1)
if dll.SHGetSpecialFolderPathW(None, buf, 0x0005, False):
print(buf.value)
else:
print("Failure!")

来源:http://bugs.python.org/issue1763#msg62242

关于python - 你如何获得 "My Documents"的确切路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3927259/

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