The C, Perl or PHP library function for reading from an open directory.
The readdir
C library function reads and returns the next entry, as a struct dirent *
, from an open DIR *
. You should open the directory using opendir
first. This can also refer to the Perl or PHP functions with the same purpose.
Links: