如何使用 C++ 在 Linux 中获取文件的所有者名称?

发布于 2024-12-03 01:47:07 字数 202 浏览 0 评论 0原文

如何使用 C++ 获取 Linux 文件系统上文件的所有者名称和组名称? stat() 调用仅提供所有者 ID 和组 ID,但不提供实际名称。

-rw-r--r--.  1 john devl  3052 Sep  6 18:10 blah.txt

如何以编程方式获取“john”和“devl”?

How can I get get the owner name and group name of a file on a Linux filesystem using C++? The stat() call only gives me owner ID and group ID but not the actual name.

-rw-r--r--.  1 john devl  3052 Sep  6 18:10 blah.txt

How can I get 'john' and 'devl' programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梅倚清风 2024-12-10 01:47:07

使用 getpwuid()getgrgid()

#include <pwd.h>
#include <grp.h>
#include <sys/stat.h>

struct stat info;
stat(filename, &info);  // Error check omitted
struct passwd *pw = getpwuid(info.st_uid);
struct group  *gr = getgrgid(info.st_gid);

// If pw != 0, pw->pw_name contains the user name
// If gr != 0, gr->gr_name contains the group name

Use getpwuid() and getgrgid().

#include <pwd.h>
#include <grp.h>
#include <sys/stat.h>

struct stat info;
stat(filename, &info);  // Error check omitted
struct passwd *pw = getpwuid(info.st_uid);
struct group  *gr = getgrgid(info.st_gid);

// If pw != 0, pw->pw_name contains the user name
// If gr != 0, gr->gr_name contains the group name
水中月 2024-12-10 01:47:07

一种方法是使用 stat() 来获取文件的 uid,然后 getpwuid() 获取用户名作为字符串。

One way would be to use stat() to get the uid of a file and then getpwuid() to get the username as a string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文