给定的文件参数是否是目录。 C

时间:2013-10-19 09:37:32

标签: c directory argv argc

我正在寻找一个代码的和平来检查我传递给我的程序的参数是否是一个目录。到目前为止,我发现了这个:

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
    struct stat buf;

    stat(argv[1],&buf);

    exit(0);

}

但它并没有真正帮助我。

1 个答案:

答案 0 :(得分:3)

使用:

if(S_ISDIR(buf.st_mode))
   printf(" Its a directoy\n");
else
   printf("Its a file\n");
stat(argv[1],&buf);致电后