2017-09-17 17:45:03 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2017-09-17 16:18:17 +02:00
|
|
|
#include <dirent.h>
|
2018-05-07 11:21:59 +02:00
|
|
|
#include <errno.h>
|
2017-09-17 16:18:17 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2017-09-24 15:33:01 +02:00
|
|
|
#include "../util.h"
|
2017-09-17 16:18:17 +02:00
|
|
|
|
|
|
|
const char *
|
|
|
|
num_files(const char *dir)
|
|
|
|
{
|
|
|
|
struct dirent *dp;
|
|
|
|
DIR *fd;
|
2018-05-07 12:17:13 +02:00
|
|
|
int num;
|
2017-09-17 16:18:17 +02:00
|
|
|
|
2018-05-06 22:28:56 +02:00
|
|
|
if (!(fd = opendir(dir))) {
|
2018-03-28 19:46:27 +02:00
|
|
|
fprintf(stderr, "opendir '%s': %s\n", dir, strerror(errno));
|
2017-09-17 16:18:17 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-07 12:17:13 +02:00
|
|
|
num = 0;
|
2018-05-06 22:28:56 +02:00
|
|
|
while ((dp = readdir(fd))) {
|
|
|
|
if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, "..")) {
|
2017-09-17 16:18:17 +02:00
|
|
|
continue; /* skip self and parent */
|
2018-05-06 22:28:56 +02:00
|
|
|
}
|
2017-09-17 16:18:17 +02:00
|
|
|
num++;
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(fd);
|
|
|
|
|
|
|
|
return bprintf("%d", num);
|
|
|
|
}
|