代码之家  ›  专栏  ›  技术社区  ›  Alex Gaynor

跨平台测试文件是否为目录的方法

  •  13
  • Alex Gaynor  · 技术社区  · 15 年前

    dp = readdir(dir);
    if (dp->d_type == DT_DIR) {
    }
    

    这在我的Linux机器上运行得很顺利。但是在另一台机器上(看起来像SunOS、sparc):

    SunOS HOST 5.10 Generic_127127-11 sun4u sparc SUNW,Ultra-5_10
    

    error: structure has no member named `d_type'
    error: `DT_DIR' undeclared (first use in this function)
    

    我以为 dirent.h

    1 回复  |  直到 15 年前
        1
  •  18
  •   kennytm    15 年前

    http://www.nexenta.org/os/Porting_Codefixes :

    solaris中的struct dirent定义不包含 d_type

    if (de->d_type == DT_DIR)
    {
       return 0;
    }
    

    更改为

    struct stat s; /*include sys/stat.h if necessary */
    ..
    ..
    stat(de->d_name, &s);
    if (s.st_mode & S_IFDIR)
    {
      return 0;
    }
    

    stat 也是POSIX标准,它应该更跨平台。但是你可能想使用 if ((s.st_mode & S_IFMT) == S_IFDIR) 遵循标准。