stat,lstat,fstat1 函数都是获取文件(普通文件,目录,管道,socket,字符,块()的属性.函数原型#include <sys/stat.h> int stat(const char *restrict pathname, struct stat *restrict buf);提供文件名字,获取文件对应属性. int fstat(int filedes, struct stat *buf);通过文件描述符获取文件对应的属性. int lstat(const char *res…