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