由文件描述词取得文件状态
stat,fstat,chmod,chown,readlink,utime
#include<sys/stat.h>
#include<unistd.h>
int lstat (const char *file_name, struct stat *buf);
lstat()与stat()作用完全相同,都是取得参数file_name所指的文件状态,其差别在于,当文件为符号连接时,lstat()会返回该link本身的状态。详细内容请参考stat()。
执行成功则返回0,失败返回-1,错误代码存于errno。
参考stat()。