1

我正在尝试使用函数 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;
            }

目录检查工作正常,但是当我在符号链接文件上运行程序时,它显示为常规文件。任何人都知道我可能做错了什么?

4

1 回答 1

4

stat统计链接的目标。如果lstat要判断文件是否为符号链接,请使用:

lstat()与 相同stat(),除了如果 path 是符号链接,则链接本身是 stat-ed,而不是它所引用的文件。

于 2013-02-19T18:56:51.023 回答