sbase/util/recurse.c

35 lines
698 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 <errno.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
2011-06-04 13:30:54 +00:00
#include <sys/stat.h>
2011-05-24 23:24:33 +00:00
#include "../util.h"
void
recurse(const char *path, void (*fn)(const char *))
{
2011-05-26 03:17:06 +00:00
char *cwd;
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;
2011-06-04 13:30:54 +00:00
if(lstat(path, &st) == -1 || !S_ISDIR(st.st_mode))
return;
else if(!(dp = opendir(path)))
eprintf("opendir %s:", path);
2011-05-26 03:17:06 +00:00
cwd = agetcwd();
2011-06-04 11:20:41 +00:00
if(chdir(path) == -1)
2011-05-24 23:24:33 +00: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 11:20:41 +00:00
if(chdir(cwd) == -1)
2011-05-26 03:17:06 +00:00
eprintf("chdir %s:", cwd);
free(cwd);
2011-05-24 23:24:33 +00:00
}