fstat ,lstat,stat;
头文件:#include<sys/stat.h>
#include<sys/types.h>
#include<unistd.h>
定义函数:
(1)int stat(const char *file_name,struct stat *buf)
返回一个与此命名文件有关的信息结构
(2)int fstat(int fileds,struct stat *buf)
获得已在文件描述符filedes上打开的文件的相关信息
(3)int fstat(const char *path_name,struct stat *buf)
类似stat,当命名的文件是符号链接时,返回该符号链接的相关信息
时间: 2024-11-08 19:02:56