The FILINFO structure holds a file information returned by f_readdir() and f_stat() function.
typedef struct { DWORD fsize; /* File size */ WORD fdate; /* Last modified date */ WORD ftime; /* Last modified time */ BYTE fattrib; /* Attribute */ TCHAR fname[13]; /* Short file name (8.3 format) */ #if _USE_LFN TCHAR* lfname; /* Pointer to the LFN buffer */ int lfsize; /* Size of the LFN buffer in unit of TCHAR */ #endif } FILINFO;