stat结构体中的st_mode理解

本文探讨了apue第四章4-12实例中关于statbuf.st_mode的使用,尤其是表达式`statbuf.st_mode & ~S_IXGRP`的含义。作者指出,对于这个操作的疑惑可以通过查阅 `/usr/include/linux/stat.h`来解答。同时,文章推荐了两篇来自优快云博主的详细解释链接,帮助读者深入理解。

apue第四章4-12实例changemod.c

#include "apue.h"

int
main(void)
{
    struct stat     statbuf;

    /* turn on set-group-ID and turn off group-execute */

    if (stat("foo", &statbuf) < 0)
        err_sys("stat error for foo");
    if (chmod("foo", (statbuf.st_mode & ~S_IXGRP) | S_ISGID) < 0)
        err_sys("chmod error for foo");
    /* set absolute mode to "rw-r--r--" */

    if (chmod("bar", S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) < 0)
        err_sys("chmod error for bar");

    exit(0);
}

对statbuf.st_mode & ~S_IXGRP这个操作有些疑惑
查看/usr/include/linux/stat.h

#define S_IFMT  00170000
#define S_IFSOCK 0140000
#define S_IFLNK  0120000
#define S_IFREG  0100000
#define S_IFBLK  0060000
#define S_IFDIR  0040000
#define S_IFCHR  0020000
#define S_IFIFO  0010000
#define S_ISUID  0004000
#define S_ISGID  0002000
#define S_ISVTX  0001000

#define S_ISLNK(m)  (((m) & S_IFMT) == S_IFLNK)
#define S_ISREG(m)  (((m) & S_IFMT) == S_IFREG)
#define S_ISDIR(m)  (((m) & S_IFMT) == S_IFDIR)
#define S_ISCHR(m)  (((m) & S_IFMT) == S_IFCHR)
#define S_ISBLK(m)  (((m) & S_IFMT) == S_IFBLK)
#define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
#define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)

#define S_IRWXU 00700
#define S_IRUSR 00400
#define S_IWUSR 00200
#define S_IXUSR 00100

#define S_IRWXG 00070
#define S_IRGRP 00040
#define S_IWGRP 00020
#define S_IXGRP 00010

#define S_IRWXO 00007
#define S_IROTH 00004
#define S_IWOTH 00002
#define S_IXOTH 00001

更详细的解释,已经有大神说明过了
可以参考:
http://blog.youkuaiyun.com/lyh__521/article/details/38270659

http://blog.youkuaiyun.com/astrotycoon/article/details/8679676

int main(int argc, char *argv[]) { struct stat file_stat; stat(argv[1],&file_stat); DIR * dp = opendir(argv[1]); if(NULL == dp) { perror("opendir"); return -1; } struct dirent * p = NULL; while(1) { p = readdir(dp); if(p == NULL) { break; } if(p->d_name[0] == '.') //不显示隐藏文件 continue; if(S_ISREG(file_stat.st_mode)) { printf("-"); } else if(S_ISBLK(file_stat.st_mode)) { printf("b"); } else if(S_ISCHR(file_stat.st_mode)) { printf("c"); } else if(S_ISDIR(file_stat.st_mode)) { printf("d"); } else if(S_ISLNK(file_stat.st_mode)) { printf("l"); } else if(S_ISFIFO(file_stat.st_mode)) { printf("p"); } else if(S_ISSOCK(file_stat.st_mode)) { printf("s"); } if(file_stat.st_mode & S_IRUSR) printf("r"); else printf("-"); if(file_stat.st_mode & S_IWUSR) printf("w"); else printf("-"); if(file_stat.st_mode & S_IXUSR) printf("x"); else printf("-"); if(file_stat.st_mode & S_IRGRP) printf("r"); else printf("-"); if(file_stat.st_mode & S_IWGRP) printf("w"); else printf("-"); if(file_stat.st_mode & S_IXGRP) printf("x"); else printf("-"); if(file_stat.st_mode & S_IROTH) printf("r"); else printf("-"); if(file_stat.st_mode & S_IWOTH) printf("w"); else printf("-"); if(file_stat.st_mode & S_IXOTH) printf("x"); else printf("-"); printf(" "); printf("%ld",file_stat.st_nlink); printf(" "); struct passwd * file_passwd; file_passwd=getpwuid(file_stat.st_uid); printf("%s",file_passwd->pw_name); printf(" "); struct group * file_group; file_group=getgrgid(file_stat.st_gid); printf("%s",file_group->gr_name); printf(" "); printf("%ld",file_stat.st_size); printf(" "); printf("%s\n",p->d_name); printf("\n"); } return 0; } 为什么只有文件名在变
08-07
int main(int argc, char *argv[]) { struct stat file_stat; stat(argv[1],&file_stat); if(S_ISREG(file_stat.st_mode)) { printf("-"); } else if(S_ISBLK(file_stat.st_mode)) { printf("b"); } else if(S_ISCHR(file_stat.st_mode)) { printf("c"); } else if(S_ISDIR(file_stat.st_mode)) { printf("d"); } else if(S_ISLNK(file_stat.st_mode)) { printf("l"); } else if(S_ISFIFO(file_stat.st_mode)) { printf("p"); } else if(S_ISSOCK(file_stat.st_mode)) { printf("s"); } if(file_stat.st_mode & S_IRUSR) printf("r"); else printf("-"); if(file_stat.st_mode & S_IWUSR) printf("w"); else printf("-"); if(file_stat.st_mode & S_IXUSR) printf("x"); else printf("-"); if(file_stat.st_mode & S_IRGRP) printf("r"); else printf("-"); if(file_stat.st_mode & S_IWGRP) printf("w"); else printf("-"); if(file_stat.st_mode & S_IXGRP) printf("x"); else printf("-"); if(file_stat.st_mode & S_IROTH) printf("r"); else printf("-"); if(file_stat.st_mode & S_IWOTH) printf("w"); else printf("-"); if(file_stat.st_mode & S_IXOTH) printf("x"); else printf("-"); printf(" "); printf("%ld",file_stat.st_nlink); printf(" "); struct passwd * file_passwd; file_passwd=getpwuid(file_stat.st_uid); printf("%s",file_passwd->pw_name); printf(" "); struct group * file_group; file_group=getgrgid(file_stat.st_gid); printf("%s",file_group->gr_name); printf(" "); printf("%ld",file_stat.st_size); printf("\n"); return 0; int main(int argc, char *argv[]) { DIR * dp = opendir(argv[1]); if(NULL == dp) { perror(“opendir”); return -1; } struct dirent * p = NULL; while(1) { p = readdir(dp); if(p == NULL) { break; } if(p->d_name[0] == ‘.’) //不显示隐藏文件 continue; printf(“%s\n”,p->d_name); } return 0; } 基于这些代码如何实现ls -l的效果
08-07
void file_start(int fp , char * file_name) { // 状态结构体 struct stat file_start; // 获取状态 fstat(fp , &file_start); // 打印文件类型 switch (file_start.st_mode & S_IFMT) { // 使用 S_IFMT 掩码获取文件类型 case S_IFREG: printf("-"); break; case S_IFDIR: printf("d"); break; case S_IFCHR: printf("c"); break; case S_IFBLK: printf("b"); break; case S_IFIFO: printf("p"); break; case S_IFLNK: printf("i"); break; case S_IFSOCK: printf("s"); break; default: printf("1"); break; } // 打印文件权限 printf((file_start.st_mode & S_IRUSR) ? "r" : "-"); printf((file_start.st_mode & S_IWUSR) ? "w" : "-"); printf((file_start.st_mode & S_IXUSR) ? "x" : "-"); printf((file_start.st_mode & S_IRGRP) ? "r" : "-"); printf((file_start.st_mode & S_IWGRP) ? "w" : "-"); printf((file_start.st_mode & S_IXGRP) ? "x" : "-"); printf((file_start.st_mode & S_IROTH) ? "r" : "-"); printf((file_start.st_mode & S_IWOTH) ? "w" : "-"); printf((file_start.st_mode & S_IXOTH) ? "x" : "-"); printf(" "); printf("%ld " , file_start.st_nlink); // 解析文件用户 struct passwd * user = getpwuid(file_start.st_uid); printf("%s " , user->pw_name); // 解析文件用户组 struct group * guser = getgrgid(file_start.st_gid); printf("%s " , guser->gr_name); // 文件大小 printf("%5ld" , file_start.st_size); // 时间解析 struct tm *Now; Now = localtime( &file_start.st_ctime ); printf(" %d月 %d %d:%d", Now->tm_mon + 1 , Now->tm_mday , Now->tm_hour , Now->tm_min); printf(" %s\n" , file_name); } int main(int argc, char const *argv[]) { int fp = open("text.txt" , O_RDWR | O_CREAT , 0666 ); char buf[2048] = "张三李四王五王麻子"; file_start(fp , "text.txt"); // close(fp); return 0; }
最新发布
11-07
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值