sbase/libutil/recurse.c

43 lines
938 B
C
Raw Normal View History

2011-05-24 23:24:33 +00:00
/* See LICENSE file for copyright and license details. */
#include <dirent.h>
#include <limits.h>
#include <stdio.h>
2011-05-24 23:24:33 +00:00
#include <stdlib.h>
#include <string.h>
2011-06-04 13:30:54 +00:00
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
2011-05-24 23:24:33 +00:00
#include "../util.h"
void
recurse(const char *path, void (*fn)(const char *))
{
char buf[PATH_MAX];
2011-05-24 23:24:33 +00:00
struct dirent *d;
2011-06-04 13:30:54 +00:00
struct stat st;
2011-05-24 23:24:33 +00:00
DIR *dp;
2014-11-19 19:59:37 +00:00
if (lstat(path, &st) < 0 || !S_ISDIR(st.st_mode))
2011-06-04 13:30:54 +00:00
return;
if (!(dp = opendir(path)))
2011-06-04 13:30:54 +00:00
eprintf("opendir %s:", path);
while ((d = readdir(dp))) {
if (strcmp(d->d_name, ".") == 0 ||
strcmp(d->d_name, "..") == 0)
continue;
if (strlcpy(buf, path, sizeof(buf)) >= sizeof(buf))
eprintf("path too long\n");
if (buf[strlen(buf) - 1] != '/')
if (strlcat(buf, "/", sizeof(buf)) >= sizeof(buf))
eprintf("path too long\n");
if (strlcat(buf, d->d_name, sizeof(buf)) >= sizeof(buf))
eprintf("path too long\n");
fn(buf);
}
2011-05-24 23:24:33 +00:00
closedir(dp);
}