diff options
author | aaron marcher <me@drkhsh.at> | 2017-08-06 15:02:16 +0200 |
---|---|---|
committer | aaron marcher <me@drkhsh.at> | 2017-08-06 15:02:16 +0200 |
commit | 4b4b2ac0790a51ea624397f829f29ed92e82fd53 (patch) | |
tree | 3f84bcbfb7dec14f0bff9e0cd996aa5d141b701d /slstatus.c | |
parent | ad39aa012c5da8f1f53c8f7366d5177e538da255 (diff) |
add num_files() function for maildirs ;)
Diffstat (limited to 'slstatus.c')
-rw-r--r-- | slstatus.c | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -1,5 +1,6 @@ /* See LICENSE file for copyright and license details. */ +#include <dirent.h> #include <err.h> #include <fcntl.h> #include <ifaddrs.h> @@ -51,6 +52,7 @@ static const char *ip(const char *iface); static const char *kernel_release(void); static const char *keyboard_indicators(void); static const char *load_avg(void); +static const char *num_files(const char *dir); static const char *ram_free(void); static const char *ram_perc(void); static const char *ram_used(void); @@ -403,6 +405,29 @@ load_avg(void) } static const char * +num_files(const char *dir) +{ + struct dirent *dp; + DIR *fd; + int num = 0; + + if ((fd = opendir(dir)) == NULL) { + warn("Failed to get number of files in directory %s", dir); + return UNKNOWN_STR; + } + + while ((dp = readdir(fd)) != NULL) { + if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, "..")) + continue; /* skip self and parent */ + num++; + } + + closedir(fd); + + return bprintf("%d", num); +} + +static const char * ram_free(void) { long free; |