The FILINFO structure holds information about the object returned by f_readdir, f_findfirst, f_findnext and f_stat function.
typedef struct { FSIZE_t fsize; /* File size */ WORD fdate; /* Last modified date */ WORD ftime; /* Last modified time */ BYTE fattrib; /* Attribute */ #if _USE_LFN != 0 TCHAR altname[13]; /* Alternative object name */ TCHAR fname[_MAX_LFN + 1]; /* Primary object name */ #else TCHAR fname[13]; /* Object name */ #endif } FILINFO;