我正在寻找一种代码来检查我传递给我的程序的参数是否是一个目录。到目前为止,我发现了这个:
#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);
}
但这并没有真正帮助我。