utimeSync method
Synchronously changes the access (atime
) and modification (mtime
) times
of a file system object referenced by path
. Given times are either in
seconds (UNIX epoch time) or as Date
objects.
Deno.utimeSync("myfile.txt", 1556495550, new Date());
Requires allow-write
permission.
Implementation
void utimeSync(
_i2.Object path,
_i2.Object atime,
_i2.Object mtime,
) {
_i3.callMethod(
this,
'utimeSync',
[
path,
atime,
mtime,
],
);
}