如何检查这是目录路径还是任何文件名路径?

时间:2011-12-08 07:10:07

标签: c linux file directory

由此

Why does fopen("any_path_name",'r') not give NULL as return?

我知道在linux目录和文件被认为是文件。所以当我在fopen中使用read模式给出任何目录路径或文件路径时,它不会给出NULL文件描述符和?

那我怎么能检查它是dirctory path还是file-path?如果我从命令参数获得一些路径?

3 个答案:

答案 0 :(得分:6)

man 2 stat

NAME
     fstat, fstat64, lstat, lstat64, stat, stat64 -- get file status

...

     struct stat {
         dev_t           st_dev;           /* ID of device containing file */
         mode_t          st_mode;          /* Mode of file (see below) */

...

     The status information word st_mode has the following bits:

...

     #define        S_IFDIR  0040000  /* directory */

答案 1 :(得分:2)

您可以使用S_ISDIR宏。

答案 2 :(得分:2)

谢谢zed_0xff和lgor Oks

这个东西可以通过这个示例代码检查

#include<stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
int main()
{
struct stat statbuf;

FILE *fb = fopen("/home/jeegar/","r");
if(fb==NULL)
    printf("its null\n");
else
    printf("not null\n");

stat("/home/jeegar/", &statbuf);

if(S_ISDIR(statbuf.st_mode))
    printf("directory\n");
else
    printf("file\n");
return 0;
}

输出

its null
directory