Contains when the file was last accessed and modified
#include <utime.h>
struct utimbuf
{
time_t actime;
time_t modtime;
};
Specifies the last time the file was accessed. Time is specified in seconds since the epoch.
Specifies the last time the file was modified. Time is specified in seconds since the epoch.