constants.O_NOATIME - Node documentation
variable constants.O_NOATIME

Usage in Deno

import { constants } from "node:fs";
const { O_NOATIME } = constants;

constant for fs.open(). Flag indicating reading accesses to the file system will no longer result in an update to the atime information associated with the file. This flag is available on Linux operating systems only.

Type

number