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;
A structure that indicates the date and time information handled by the FS library. The details of each member are as follows.
year | A value 0 or higher that indicates the year. |
month | A value between 1 and 12 that indicates the month. |
day | A value between 1 and 31 that indicates the date. |
hour | A value between 0 and 23 that indicates the hour. |
minute | A value between 0 and 59 that indicates the minute. |
second | A value between 0 and 60 that indicates the second. |
FSDirectoryEntryInfo
FS_ReadDirectory
2007/09/18 Initial version.
CONFIDENTIAL