Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.utime

UNSTABLE: needs investigation into high precision time.

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.

await Deno.utime("myfile.txt", 1556495550, new Date());

Requires allow-write permission.

function utime(
path: string | URL,
atime: number | Date,
mtime: number | Date,
): Promise<void>;
§
utime(path: string | URL, atime: number | Date, mtime: number | Date): Promise<void>
[src]

§Parameters

§
path: string | URL
[src]
§
atime: number | Date
[src]
§
mtime: number | Date
[src]

§Return Type

§
Promise<void>
[src]