int stat(const char *path, struct stat *buf); int lstat(const char *path, struct stat *buf); int fstat(int filedes, struct stat *buf); 聪明人一眼就能看出来fstat的第一个参数是和另外两个不一样的,对!fstat区别于另外两个系统调用的地方在于,fstat
说明:转载请注明出处 函数的具体信息如下表: 用于获取文件信息的函数 头文件 <sys/types.h> <sys/stat.h> <unistd.h> 函数形式 int stat(const char *path, struct stat *buf); int fstat(int filedes, struct stat *buf); int lstat(const