c++判断目录 c++判断是否为目录的示例分享
人气:1想了解c++判断是否为目录的示例讲解的相关内容吗,在本文为您仔细讲解c++判断目录的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:c++,目录,下面大家一起来学习吧。
复制代码 代码如下:
#include<sys/stat.h>
#include<unistd.h>
int is_dir(char *path){
struct stat buf;
if(lstat(path , &buf) < 0){
return FALSE;
}
int ret = __S_IFDIR & buf.st_mode;
if(ret){
return TRUE;
}
return FALSE;
}
加载全部内容