英文:
GetSpecialFolder equivalent in golang
问题
我正在尝试获取Windows的临时文件夹路径,除了固定路径C:\Windows\Temp
之外,我想使用类似于VBScript中的GetSpecialFolder
的API。
是否有类似的方法可以实现这个功能?
英文:
I'm trying to get the temp folder of windows, other than a fixed path C:\Windows\Temp
, I'd like to use some API similar to GetSpecialFolder
in VBScript.
Is there anything like that?
答案1
得分: 6
你可以使用os.TempDir()
来实现这个功能。
英文:
You use os.TempDir()
for that.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论