Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/cli/dts/lib.deno.ns.d.ts>Deno.utimeSync

A modern runtime for JavaScript and TypeScript.
Go to Latest
function Deno.utimeSync
allow-write
import { Deno } from "https://deno.land/x/deno@v1.28.1/cli/dts/lib.deno.ns.d.ts";
const { utimeSync } = Deno;

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.

Parameters

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