FSDateTime

Definition


typedef struct FSDateTime
{
    u32     year;    // 0-
    u32     month;   // 1-12
    u32     day;     // 1-31
    u32     hour;    // 0-23
    u32     minute;  // 0-59
    u32     second;  // 0-60
}
FSDateTime;

Description

A structure that indicates the date and time information handled by the FS library. The details of each member are as follows.

yearA value 0 or higher that indicates the year.
monthA value between 1 and 12 that indicates the month.
dayA value between 1 and 31 that indicates the date.
hourA value between 0 and 23 that indicates the hour.
minuteA value between 0 and 59 that indicates the minute.
secondA value between 0 and 60 that indicates the second.

See Also

FSDirectoryEntryInfo
FS_ReadDirectory

Revision History

2007/09/18 Initial version.


CONFIDENTIAL