Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/cli/js/lib.deno.unstable.d.ts>Deno.utime

A modern runtime for JavaScript and TypeScript.
Go to Latest
function Deno.utime
import { Deno } from "https://deno.land/x/deno@v1.0.0/cli/js/lib.deno.unstable.d.ts";
const { utime } = Deno;

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.

Parameters

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

Returns

Promise<void>