La propiedad stats.atimeMs 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 milisegundos.
Sintaxis:
stats.atimeMs;
Parámetros: esta propiedad no utiliza ningún parámetro.
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 milisegundos.
Los siguientes ejemplos ilustran el uso de la propiedad stats.atimeMs en Node.js:
Ejemplo 1:
// Node.js program to demonstrate the // stats.atimeMs Property // Accessing fs module const fs = require('fs'); // Calling fs.Stats stats.atimeMs // using stat fs.stat('./', (err, stats) => { if (err) throw err; // The timestamp when the file // is last accessed (in MS) console.log("Using stat: " + stats.atimeMs); }); // Using lstat fs.lstat('./filename.txt', (err, stats) => { if (err) throw err; // The timestamp when the file // is last accessed (in MS) console.log("Using lstat: " + stats.atimeMs); });
Producción:
Using stat: 1592664011243.8335 Using lstat: 1592664189785.7615
Ejemplo 2:
// Node.js program to demonstrate the // stats.atimeMs Property // Accessing fs module const fs = require('fs').promises; // Calling fs.Stats stats.atimeMs (async() => { const stats = await fs.stat('./filename.txt'); // The timestamp when the file // is last accessed (in MS) console.log("Using stat synchronous: " + stats.atimeMs); })().catch(console.error)
Producción:
Using stat synchronous: 1592664546730.291
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_atimems