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

前端之家收集整理的这篇文章主要介绍了如何使用C在Linux中获取文件的所有者名称?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用C获取 Linux文件系统上的文件的所有者名称和组名? stat()调用仅给出所有者ID和组ID,但不给出实际名称.
-rw-r--r--.  1 john devl  3052 Sep  6 18:10 blah.txt

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

解决方法

使用 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
原文链接:https://www.f2er.com/c/113673.html

猜你在找的C&C++相关文章