La propiedad stats.atimeNs es una interfaz de programación de aplicaciones incorporada de la clase fs.Stats que se usa para obtener la marca de tiempo cuando se accedió al archivo por última vez desde la época POSIX expresada en nanosegundos.
Sintaxis:
stats.atimeNs;
Parámetros: esta propiedad no tiene ningún parámetro, pero durante la creación del objeto de estadísticas {bigint:true} debe pasarse como opciones.
Valor devuelto: Devuelve un número o valor BigInt que representa la marca de tiempo cuando se accedió al archivo por última vez desde la época POSIX expresada en nanosegundos.
Los siguientes ejemplos ilustran el uso de la propiedad stats.atimeNs en Node.js:
Ejemplo 1:
// Node.js program to demonstrate the // stats.atimeNs property // Accessing fs module const fs = require('fs'); // Calling fs.Stats stats.atimeNs // using stat fs.lstat('./', { bigint: true }, (err, stats) => { if (err) throw err; // The timestamp when the file // is last accessed (in NS) console.log("Using stat: " + stats.atimeNs); }); // Using lstat fs.lstat('./filename.txt', { bigint: true }, (err, stats) => { if (err) throw err; // The timestamp when the file is // last accessed (in NS) console.log("Using lstat: " + stats.atimeNs); });
Producción:
Using stat: 1592654526560650 Using lstat: 1592664546730291
Ejemplo 2:
// Node.js program to demonstrate the // stats.atimeNs property // Accessing fs module const fs = require('fs').promises; // Calling fs.Stats stats.atimeNs (async() => { const stats = await fs.stat( './filename.txt', {BigInt:true}); // The timestamp when the file // is last accessed (in NS) console.log("Using stat synchronous: " + stats.atimeNs); })().catch(console.error)
Producción:
Using stat synchronous: 1592664546730291
Nota: El programa anterior se compilará y ejecutará usando el node filename.js
comando y usará file_path correctamente.
Referencia: https://nodejs.org/api/fs.html#fs_stats_atimens