FINFO
The type FINFO contains file information data. The structure is defined in the file rtl.h as:
typedef struct {
S8 name[256]; /* File name */
U32 size; /* File size in bytes */
U16 fileID; /* System Identification number */
U8 attrib; /* File attributes */
RL_TIME time; /* Create/Modify time */
} FINFO;
Example:
#include <rtl.h>
...
FINFO fileInfo;
...
fileInfo.fileID = 0;
fileInfo.time.year = 2011;
...