0

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

#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);

}

但这并没有真正帮助我。

4

1 回答 1

3

利用:

if(S_ISDIR(buf.st_mode))
   printf(" Its a directoy\n");
else
   printf("Its a file\n");

stat(argv[1],&buf);通话后

于 2013-10-19T09:39:45.387 回答