Sets the accessed and modification timestamps of file to the current wall
clock time.
The granularity that ultimately is stored depends on the combination of operating system and file system.
pub fn setTimestampsNow(file: File, io: Io) SetTimestampsError!void
pub fn setTimestampsNow(file: File, io: Io) SetTimestampsError!void {
return io.vtable.fileSetTimestamps(io.userdata, file, .{
.access_timestamp = .now,
.modify_timestamp = .now,
});
}