The f_utime function changes the timestamp of a file or directory.
FRESULT f_utime ( const TCHAR* FileName, /* Pointer to the file or directory path */ const FILINFO* TimeDate /* Time and data to be set */ );
The f_utime function changes the timestamp of a file or directory
FRESULT set_timestamp (
char *obj, /* Pointer to the file name */
int year,
int month,
int mday,
int hour,
int min,
int sec
)
{
FILINFO fno;
fno.fdate = (WORD)(((year - 1980) * 512U) | month * 32U | mday);
fno.ftime = (WORD)(hour * 2048U | min * 32U | sec / 2U);
return f_utime(obj, &fno);
}
Available when _FS_READONLY == 0 and _FS_MINIMIZE == 0.