summaryrefslogtreecommitdiff
path: root/components/num_files.c
blob: ab43694b1eed21d1c750ad635e222bc73cdeaee8 (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 <errno.h>
#include <stdio.h>
#include <string.h>

#include "../util.h"

const char *
num_files(const char *dir)
{
	struct dirent *dp;
	DIR *fd;
	int num = 0;

	if (!(fd = opendir(dir))) {
		fprintf(stderr, "opendir '%s': %s\n", dir, strerror(errno));
		return NULL;
	}

	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);
}