首页 > 系统 > Linux > 正文

解析linux 文件和目录操作的相关函数

2024-08-28 00:01:42
字体:
来源:转载
供稿:网友

struct stat
{
mode_t    st_mode;    文件类型,文件权限
ino_t     st_ino;        i节点号
dev_t    st_dev;       
dev_t    st_rdev;    设备文件序号
nlink_t    st_nlink;    链接
uid_t    st_uid;
gid_t     st_gid;        用户ID
off_t    st_size;    文件大小,此字段只对普通文件、目录文件和符号连接有意义。
time_t    st_atime;    最后存取时间
time_t    st_mtime;    文件内容的最后修改时间
time_t    st_ctime;    文件状态的最后修改时间
long    st_blksize;   
long     st_blocks;
};

1,stat函数取得文件信息。
#include <sys/types.h>
#include <sys/stat.h>
int stat(const char *pathname, struct stat *buf);
int fstat (int fd,struct stat *buf);
int lstat(const char *pathname, struct stat *buf);

lstat函数类似于stat,但是当命名的文件是一个符号连接时,lstat返回该符号连接的有关信息,而不是由该符号连接引用的文件的信息

2,access函数判断文件权限
#include<unistd.h>
int access (const char *name, int mode) ;
返回:若成功则为 0,若出错则为- 1
access函数的mode常数,取自 <unistd.h>
mode                 说   明
R_OK                  测试读许可权
W_OK                 测试写许可权
X_OK                测试执行许可权
F_OK                测试文件是否存在

3,umask函数设置文件创建屏蔽字
#include <sys/types.h>
#include <sys/stat.h>
mode_t umask(mode_t task) ;
返回:以前的文件方式创建屏蔽字

4,chmod函数用于修改文件的权限
#include <sys/types.h>
#include <sys/stat.h>
int chmod(const char *pathname, mode_t mode);
int fchmod(int fd, mode_t mode);
两个函数返回:若成功则为 0,若出错则为- 1


5,chown函数可用于更改文件的用户 ID和组ID。
#include <sys/types.h>
#include <unistd.h>
int chown(const char *pathname,uid_t owner,gid_t group);
int fchown(int fd, uid_t owner, gid_t group);
int lchown(const char *pathname, uid_t owner, gid_t group);
三个函数返回:若成功则为 0,若出错则为- 1

6,在文件末尾处截短文件可以调用函数 truncate和ftruncate。将一个文件的长度截短为 0是一个特例,用O_TRUNC标志可以做到这一点。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表