【C语言】——判断给定的路径是目录还是文件

#include <sys/stat.h>
struct stat buf;

stat(path, &buf);
if(S_ISDIR(buf.st_mode))
    printf("is directory\n");
else
    printf("is file\n");

你可能感兴趣的:(【C语言】——判断给定的路径是目录还是文件)