2017-09-17 15:45:03 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2017-09-17 14:18:17 +00:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2017-09-24 13:33:01 +00:00
|
|
|
#include "../util.h"
|
2017-09-17 14:18:17 +00:00
|
|
|
|
|
|
|
const char *
|
2018-07-06 06:08:48 +00:00
|
|
|
num_files(const char *path)
|
2017-09-17 14:18:17 +00:00
|
|
|
{
|
|
|
|
struct dirent *dp;
|
|
|
|
DIR *fd;
|
2018-05-07 10:17:13 +00:00
|
|
|
int num;
|
2017-09-17 14:18:17 +00:00
|
|
|
|
2018-07-06 06:08:48 +00:00
|
|
|
if (!(fd = opendir(path))) {
|
|
|
|
warn("opendir '%s':", path);
|
2017-09-17 14:18:17 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-07 10:17:13 +00:00
|
|
|
num = 0;
|
2018-05-06 20:28:56 +00:00
|
|
|
while ((dp = readdir(fd))) {
|
|
|
|
if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, "..")) {
|
2017-09-17 14:18:17 +00:00
|
|
|
continue; /* skip self and parent */
|
2018-05-06 20:28:56 +00:00
|
|
|
}
|
2017-09-17 14:18:17 +00:00
|
|
|
num++;
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir(fd);
|
|
|
|
|
|
|
|
return bprintf("%d", num);
|
|
|
|
}
|