dsc56927 2016-07-14 14:47
浏览 27
已采纳

如果您知道Go中的群组名称,请获取提示

I created a group on a Linux machine. Now I am trying to call os.Chown to change a file's ownership to that new group.

os.Chown requires me to know the uid and the gid:

func Chown(name string, uid, gid int) error

How can I get the gid for my group? I tried using user.Lookup("groupname"), but I got "unknown user groupname"

I can call os.Getgroups, but this only returns me an array of group IDs - it doesn't tell me anything about the mapping between a group name and the group id.

I am guessing there is a Unix utility I can shell out to (parse the result of calling id) but I'd rather not do that if I can help it.

  • 写回答

1条回答 默认 最新

  • dt102282 2016-07-14 14:57
    关注

    Update: As of August 16, 2016, Go 1.7 is released with support for LookupGroup. Upgrading to Go 1.7 is recommended if you want to access information about POSIX groups.

    There is a LookupGroup function in the Go 1.7 betas, but it was added only this February and isn't in any released version of Go, so you're kind of out of luck.

    As far as I can see your options are:

    1. Upgrade to a beta.
    2. Wait for the 1.7 release, scheduled for August.
    3. Write your own cgo function that calls getgrnam for the information you need (tricky)
    4. Write your own code that parses /etc/group (relatively easy... as long as you can guarantee that the info you need actually comes from that file and not LDAP or something).
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀