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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#define _GNU_SOURCE
#include "shared.h"
#include "arena.h"
#include "encryption.h"
#include "ll.h"
#include <errno.h>
#include <error.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <dirent.h>
int selector(const struct dirent *ent) {
// non-zero value includes a file, zero value excludes it
if(strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0)
return 0;
return 1;
}
int printnames(void *data) {
struct dirent *node = (struct dirent *)data;
printf("%s\n", (node) ? node->d_name : "null");
return 0;
}
int main() {
// error(1, ENOTSUP, "No main file lol");
// Sample code on scanning the file system
struct dirent **namelist = NULL;
int numentries = scandir(".", &namelist, selector, alphasort);
if(numentries < 0)
error(1, errno, "Ran into error scanning dir");
dlinkedlist *list = dlinkedlist_init();
for(int i = 0; i < numentries; i++)
dlinkedlist_append(list, (void *)(namelist[i]), free);
free(namelist);
dlinkedlist_foreach(list, printnames);
dlinkedlist_free(list);
return 0;
}
|