Directory Interface
DESCRIPTION
The SILC Directory API provides portable way to open and read directories and their content.
EXAMPLE
SilcDir dir; SilcDirEntry entry; dir = silc_dir_open("foodir"); while ((entry = silc_dir_read(dir, NULL))) printf("File name: %s\n", silc_dir_entry_name(entry)); silc_dir_close(dir);
TABLE OF CONTENTS