摘要: 结构体dirent: struct dirent { ino_t d_ino; //inode number off_t d_off; //offset to the next diret unsigned short d_reclen; //length of this record unsign 阅读全文
posted @ 2019-09-27 18:37 王清河 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 当文件是一个符号链接时,lstat返回的是该符号链接本身的信息,而stat返回的是该链接指向的文件的信息。 stat结构体中的st_mode则定义了下列数种情况 S_IFMT 0170000 文件类型的位遮罩 S_IFSOCK 0140000 socket S_IFLNK 0120000 符号链接 阅读全文
posted @ 2019-09-27 18:35 王清河 阅读(762) 评论(0) 推荐(0) 编辑