IMPORT_C DIR *opendir(const char *);
Description
Opens a directory.
Parameters
const char * |
path to the directory to be opened. |
|
Return value
DIR * |
a pointer to the dir object. This object describes the directory and is used in subsequent operations on the directory If error, returns NULL. |
|