当前位置:主页 > 软件编程 > C代码 >

c++判断是否为目录的示例分享

时间:2021-08-14 08:32:31 | 栏目: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;
}

您可能感兴趣的文章:

相关文章