Directory entry structure. More...
#include <dirent.h>

Data Fields | |
| uint32_t | d_fileno |
| File number, unused. | |
| uint16_t | d_reclen |
| Record length, unused. | |
| uint8_t | d_type |
| File type, 0=regular, 1=directory. | |
| uint8_t | d_namlen |
| Length of string in d_name. | |
| char | d_name [MAXNAMLEN+1] |
| Name of this entry. | |
Directory entry structure.
This structure is returned by readdir(). It is not optimal for Nut/OS, but compatible to *nix systems.
File type, 0=regular, 1=directory.
Definition at line 122 of file dirent.h.
Referenced by PhatDirRead().
| char dirent::d_name[MAXNAMLEN+1] |
Name of this entry.
Definition at line 124 of file dirent.h.
Referenced by NutFtpTransferDirectoryOptions(), and PhatDirRead().