summaryrefslogtreecommitdiff
path: root/components/num_files.c
blob: fb55df922587f98b051c46af653ba1e8f9bb1c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* See LICENSE file for copyright and license details. */
#include <dirent.h>
#include <stdio.h>
#include <string.h>

#include "../util.h"

const char *
num_files(const char *path)
{
	struct dirent *dp;
	DIR *fd;
	int num;

	if (!(fd = opendir(path))) {
		warn("opendir '%s':", path);
		return NULL;
	}

	num = 0;
	while ((dp = readdir(fd))) {
		if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, "..")) {
			continue; /* skip self and parent */
		}
		num++;
	}

	closedir(fd);

	return bprintf("%d", num);
}