La propiedad stats.birthtimeMs 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 crea el archivo desde la época POSIX expresada en milisegundos.
Sintaxis:
stats.birthtimeMs;
Valor devuelto: Devuelve un número o valor BigInt que representa la marca de tiempo cuando se crea el archivo desde la época POSIX expresada en milisegundos.
Los siguientes ejemplos ilustran el uso de la propiedad stats.birthtimeMs en Node.js:
Ejemplo 1:
// Node.js program to demonstrate the // stats.birthtimeMs property // Accessing fs module const fs = require('fs'); // Calling fs.Stats stats.birthtimeMs // property using stat fs.stat('./', (err, stats) => { if (err) throw err; // The timestamp when the file // is created (in MS) console.log("using stat: " + stats.birthtimeMs); }); // Using lstat fs.lstat('./filename.txt', (err, stats) => { if (err) throw err; // The timestamp when the file // is created (in MS) console.log("using lstat: " + stats.birthtimeMs); });
Producción:
using stat: 1589375311991.9453 using lstat: 1592667100334.387
Ejemplo 2:
// Node.js program to demonstrate the // stats.birthtimeMs property // Accessing fs module const fs = require('fs').promises; // Calling fs.Stats stats.birthtimeMs (async () => { const stats = await fs.stat('./filename.txt'); // The timestamp when the file // is created (in MS) console.log("using stat synchronous: " + stats.birthtimeMs); })().catch(console.error)
Producción:
using stat synchronous: 1592667100334.387
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_birthtimems