2022
我们一起努力

Linux C 创建目录函数mkdir的mode设置问题(linux c 创建目录失败)

函数原型:


#include <sys/stat.h>


int mkdir(const char *path, mode_t mode);


参数


path是目录名


mode是目录权限


返回值:


返回0 表示成功, 返回 -1表示错误,并且会设置errno值。


mode模式位:


mode 表示新目录的权限,可以取以下值:


S_IRUSR
S_IREAD


S_IWUSR
S_IWRITE
S_IXUSR
S_IEXEC
S_IRWXU
This is equivalent to (S_IRUSR | S_IWUSR | S_IXUSR).
S_IRGRP
Read permission bit for the group owner of the file. Usually 040.
S_IWGRP
Write permission bit for the group owner of the file. Usually 020.
S_IXGRP
Execute or search permission bit for the group owner of the file. Usually 010.
S_IRWXG
This is equivalent to (S_IRGRP | S_IWGRP | S_IXGRP).
S_IROTH
Read permission bit for other users. Usually 04.
S_IWOTH
Write permission bit for other users. Usually 02.
S_IXOTH
Execute or search permission bit for other users. Usually 01.
S_IRWXO
This is equivalent to (S_IROTH | S_IWOTH | S_IXOTH).
S_ISUID
This is the set-user-ID on execute bit, usually 04000. See How Change Persona.
S_ISGID
This is the set-group-ID on execute bit, usually 02000. See How Change Persona.
S_ISVTX
This is the sticky bit, usually 01000.


例子:


#include <sys/types.h> #include <sys/stat.h>
int status;


status = mkdir(“/home/newdir”, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);


这样就创建了一个newdir目录,权限通过ls -al 查看为


drwxr-xr-x


跟用linux命令mkdir创建的目录权限位一致。

本文从互联网转载,来源地址:www.downzz.com/shell/17368.html,原作者保留一切权利,若侵权或引用不当,请联系茶猫云(cmy.cn)删除。【茶猫云,优质云服务器提供商】

赞(0)
文章名称:《Linux C 创建目录函数mkdir的mode设置问题(linux c 创建目录失败)》
文章链接:https://www.fzvps.com/35757.html
本站文章来源于互联网,如有侵权,请联系管理删除,本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。
图片版权归属各自创作者所有,图片水印出于防止被无耻之徒盗取劳动成果的目的。

评论 抢沙发

评论前必须登录!