-
Notifications
You must be signed in to change notification settings - Fork 3
/
dirent.h
59 lines (50 loc) · 1.74 KB
/
dirent.h
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
52
53
54
55
56
57
58
59
/*
dirent.h 2011/06/16
by 7k
functions from here -->http://lists.arabeyes.org/archives/developer/2007/January/msg00017.html
you can find the rest of dirent.h functions here -->http://softagalleria.net/dirent.php
*/
#ifdef _WIN32
#include <dirent.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
/* function declaration */
typedef int(*qsort_compar)(const void *, const void *);
int scandir(const char *, struct dirent ***, int (*)(const struct dirent *), int (*)(const struct dirent **, const struct dirent **));
int alphasort(const struct dirent **, const struct dirent **);
/* function implementation */
int scandir(const char *dir, struct dirent ***namelist,
int (*select)(const struct dirent *),
int (*compar)(const struct dirent **, const struct dirent **)) {
DIR *d;
struct dirent *entry;
register int i=0;
size_t entrysize;
if ((d=opendir(dir)) == NULL)
return(-1);
*namelist=NULL;
while ((entry=readdir(d)) != NULL)
{
if (select == NULL || (select != NULL && (*select)(entry)))
{
*namelist=(struct dirent **)realloc((void *)(*namelist),
(size_t)((i+1)*sizeof(struct dirent *)));
if (*namelist == NULL) return(-1);
entrysize=sizeof(struct dirent)-sizeof(entry->d_name)+strlen(entry->d_name)+1;
(*namelist)[i]=(struct dirent *)malloc(entrysize);
if ((*namelist)[i] == NULL) return(-1);
memcpy((*namelist)[i], entry, entrysize);
i++;
}
}
if (closedir(d)) return(-1);
if (i == 0) return(-1);
if (compar != NULL)
qsort((void *)(*namelist), (size_t)i, sizeof(struct dirent *), (qsort_compar)compar);
return(i);
}
int alphasort(const struct dirent **a, const struct dirent **b) {
return(strcmp((*a)->d_name, (*b)->d_name));
}
#endif