本文主要是介绍Linux chmod/fchmod/fchmodat 函数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 一、函数声明
- 二、实例
一、函数声明
#include <sys/stat.h>int chmod(const char *pathname, mode_t mode);
int fchmod(int fd, mode_t mode);#include <fcntl.h> /* Definition of AT_* constants */
#include <sys/stat.h>int fchmodat
这篇关于Linux chmod/fchmod/fchmodat 函数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!