我正在尝试使用函数 S_ISLNK(file.st_mode) 来检查某个文件是符号链接还是目录或常规文件。但是,当我使用符号链接文件检查它时,它似乎不起作用。
这是我的代码:
if(S_ISDIR(fileStat.st_mode))
{
// DIR - display files in the directory
printf(" DIR ");
fileType = 2;
}else if(S_ISLNK(fileStat.st_mode)){
// LNK - display the name of the file the link is pointing to
printf(" LNK ");
fileType = 3;
}else{
// Display general info only
printf(" REG ");
fileType = 1;
}
目录检查工作正常,但是当我在符号链接文件上运行程序时,它显示为常规文件。任何人都知道我可能做错了什么?