プログラムに渡す引数がディレクトリかどうかを確認するコードを探しています。これまでのところ、私はこれを見つけました:
#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);
}
しかし、それは本当に私を助けません。