4412 chmod权限

Posted ch122633

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了4412 chmod权限相关的知识,希望对你有一定的参考价值。

chmod权限

使用命令"man 2 chmod"学习chmod函数
? int chmod(const char *path, mode_t mode);
参数*path:文件路径。
参数mode:直接使用数字即可。和前面命令中chmod 777 xxx 中的777
个参数含义类似,也可以使用文档中的组合值。
返回值:成功返回0,错误返回-1

 

? int fchmod(int fd, mode_t mode);
参数fd:文件描述符。
参数mode:直接使用数字即可。和前面命令中chmod 777 xxx 中的777
个参数含义类似,也可以使用文档中的组合值。
返回值:成功返回0,错误返回-1

 

#include <sys/stat.h>

#include <stdio.h>
#include <sys/types.h>
#include <fcntl.h>

int main(int argc, char *argv[])
{
        int fd, ret;

        if(argc < 3) {
                printf("
Please input file apth 
");
                return 1;
        }

        //chmod test
        ret = chmod(argv[1], 0777);
        if(ret < 0) {
                printf("Please makes sure file path
");
                return 1;
        }
        printf("chmod %s is success.
", argv[1]);

        //fchmod test
        fd = open(argv[2], O_RDWR|O_NOCTTY|O_NDELAY);
        if(fd < 0) {
                printf("Please makes sure file path
");
                return 1;
        }
        ret = fchmod(fd, 0555);
        if(ret) {
                printf("Please makes sure file path
");
                return 1;
        }
        printf("fchmod %s is success.
", argv[2]);

        return 0;
}

 













以上是关于4412 chmod权限的主要内容,如果未能解决你的问题,请参考以下文章

***Linux chmod命令修改文件与文件夹权限命令代码

C中的chmod分配错误的权限

简化版chmod

java运行shell命令,chmod 777 xxx,改变权限无效的解决的方法。

用chmod设置用户的权限?

Linux权限详解(chmod、600、644、666、700、711、755、777、4755、6755、7755)