fn updateTimes(self: File, atime: i128, mtime: i128) UpdateTimesError!void

The underlying file system may have a different granularity than nanoseconds, and therefore this function cannot guarantee any precision will be stored. Further, the maximum value is limited by the system ABI. When a value is provided that exceeds this range, the value is clamped to the maximum. TODO: integrate with async I/O

Parameters

self: File,
atime: i128,

access timestamp in nanoseconds

mtime: i128,

last modification timestamp in nanoseconds