function Deno.utimeSync
Jump to headingutimeSync(path: string | URL,atime: number | Date,mtime: number | Date,): voidSynchronously 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.
Parameters Jump to heading
Jump to headingpath: string | URLJump to headingatime: number | DateJump to headingmtime: number | DateReturn Type Jump to heading
void