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