sbase/libutil/recurse.c

47 lines
1.1 KiB
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"
int recurse_follow = 'P';
2011-05-24 23:24:33 +00:00
void
recurse(const char *path, void (*fn)(const char *, int), int depth)
2011-05-24 23:24:33 +00:00
{
struct dirent *d;
struct stat lst, st;
2011-05-24 23:24:33 +00:00
DIR *dp;
size_t len;
char *buf;
2011-05-24 23:24:33 +00:00
if (lstat(path, &lst) < 0)
eprintf("lstat %s:", path);
if (stat(path, &st) < 0)
eprintf("stat %s:", path);
if (!S_ISDIR(lst.st_mode) && !(S_ISLNK(lst.st_mode) && S_ISDIR(st.st_mode) &&
!(recurse_follow == 'P' || (recurse_follow == 'H' && depth > 0))))
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);
len = strlen(path);
while ((d = readdir(dp))) {
if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
continue;
buf = emalloc(len + (path[len] != '/') + strlen(d->d_name) + 1);
sprintf(buf, "%s%s%s", path, (path[len] == '/') ? "" : "/", d->d_name);
fn(buf, depth + 1);
free(buf);
}
2011-05-24 23:24:33 +00:00
closedir(dp);
}