英文:
How to get Windows display name in Go?
问题
我正在尝试在Go语言中获取我的Windows用户名和显示名称。我尝试了user.Current().Name
,但它返回的是显示名称,而不是在命令提示符中使用whoami
返回的实际用户名。
英文:
I'm trying to get my Windows username and display name in Go. I tried user.Current().Name
but that returns the display name, not the actual username returned by whoami
in a command prompt.
答案1
得分: 1
原来,Name
是显示名称,而 Username
是实际的用户名(以 domain\username
格式)。
英文:
Turns out, Name
is the display name, while Username
is the actual username (in domain\username
format).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论