Skip to main content
Deno.utimeSync - Deno documentation
function Deno.utimeSync
allow-write
utimeSync(
path: string | URL,
atime: number | Date,
mtime: number | Date,
): void
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. ```ts Deno.utimeSync("myfile.txt", 1556495550, new Date()); ``` Requires `allow-write` permission.

Parameters

path: string | URL
atime: number | Date
mtime: number | Date

Return Type

void