我正在尝试使用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 上它会因为不拾取任何文件而失败。我错过了什么?