sbase/util/recurse.c

35 lines
698 B
C
Raw Normal View History

2011-05-25 00:24:33 +01:00
/* See LICENSE file for copyright and license details. */
#include <dirent.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
2011-06-04 14:30:54 +01:00
#include <sys/stat.h>
2011-05-25 00:24:33 +01:00
#include "../util.h"
void
recurse(const char *path, void (*fn)(const char *))
{
2011-05-26 04:17:06 +01:00
char *cwd;
2011-05-25 00:24:33 +01:00
struct dirent *d;
2011-06-04 14:30:54 +01:00
struct stat st;
2011-05-25 00:24:33 +01:00
DIR *dp;
2011-06-04 14:30:54 +01:00
if(lstat(path, &st) == -1 || !S_ISDIR(st.st_mode))
return;
else if(!(dp = opendir(path)))
eprintf("opendir %s:", path);
2011-05-26 04:17:06 +01:00
cwd = agetcwd();
2011-06-04 12:20:41 +01:00
if(chdir(path) == -1)
2011-05-25 00:24:33 +01:00
eprintf("chdir %s:", path);
while((d = readdir(dp)))
if(strcmp(d->d_name, ".") && strcmp(d->d_name, ".."))
fn(d->d_name);
closedir(dp);
2011-06-04 12:20:41 +01:00
if(chdir(cwd) == -1)
2011-05-26 04:17:06 +01:00
eprintf("chdir %s:", cwd);
free(cwd);
2011-05-25 00:24:33 +01:00
}