在BSD上有什么不同?

时间:2011-11-11 11:27:42

标签: c unix posix bsd nftw

我正在尝试使用nftw使用以下代码获取目录树中的所有.c文件:

static int gf(const char *path, const struct stat *st, int t, struct FTW *ftw) {
    if (t != FTW_F)
        return 0;
    if (strcmp(ext(path), ".c") == 0)
        addl(&files, dup(abspath(path)));
    return 0;
}

void getfiles(char *path) {
    nftw(path, gf, 255, FTW_PHYS);
}

它可以在Linux和Solaris上运行,但是在PC-BSD上它只是没有拿起任何文件而失败。我错过了什么?

1 个答案:

答案 0 :(得分:1)

nftw的返回值是多少?如果它是-1errno is设置为EINVAL,那么您很可能超过OPEN_MAX的值。尝试将较小的值作为第三个参数传递给nftw,并确保它小于OPEN_MAX