Skip to main content
futimes - fs - Node documentation
function futimes

Usage in Deno

import { futimes } from "node:fs";
futimes(
fd: number,
atime: TimeLike,
mtime: TimeLike,
callback: NoParamCallback,
): void

Change the file system timestamps of the object referenced by the supplied file descriptor. See utimes.

Parameters

fd: number
atime: TimeLike
mtime: TimeLike
callback: NoParamCallback

Return Type

void