#include <sys/types.h>
|
#include <dirent.h>
|
int
scandir (const char *dirname, struct dirent ***namelist, int \*(lp*select\*(rp\*(lpstruct dirent *\*(rp, int \*(lp*compar\*(rp\*(lpconst
void *, const void *\*(rp); |
int
alphasort (const void *d1, const void *d2); |
The select argument is a pointer to a user supplied subroutine which is called by scandir to select which entries are to be included in the array. The select routine is passed a pointer to a directory entry and should return a non-zero value if the directory entry is to be included in the array. If select is null, then all the directory entries will be included.
The compar argument is a pointer to a user supplied subroutine which is passed to qsort to sort the completed array. If this pointer is null, the array is not sorted.
The alphasort function is a routine which can be used for the compar argument to sort the array alphabetically.
The memory allocated for the array can be deallocated with free, by freeing each pointer in the array and then the array itself.
//Illustrates how to use scandir API. #include <dirent.h> Void scandirTest() { struct dirent **namelist; int n; // Function call to get the dir entries into the namelist. n = scandir("\home\manjus\GETTEXT", &namelist, 0, 0); if(n > 0) // if scandir is successful it retuns the number of entries greater than 0 { // print all the entries in the directory. while(n--) { printf("dir name @ pos %d is %s \n",n,namelist[n]->d_name); } } }
The scandir and alphasort functions appeared in BSD 4.2.
Feedback
For additional information or queries on this page send feedback
© 2005-2007 Nokia |