La propiedad stats.birthtime 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.
Sintaxis:
stats.birthtime
Valor devuelto: Devuelve una Fecha que representa la marca de tiempo cuando se creó el archivo.
Los siguientes ejemplos ilustran el uso de la propiedad stats.birthtime en Node.js:
Ejemplo 1:
// Node.js program to demonstrate the // stats.birthtime property // Accessing fs module const fs = require('fs'); // Calling stats.birthtime property // from fs.Stats class using stat fs.stat('./', (err, stats) => { if (err) throw err; // The timestamp when the file is created console.log("Using stat: " + stats.birthtime); }); // Using lstat fs.lstat('./filename.txt', (err, stats) => { if (err) throw err; // The timestamp when the file is created console.log("Using lstat: " + stats.birthtime); });
Producción:
Using stat: Wed May 13 2020 18:38:31 GMT+0530 (India Standard Time) Using lstat: Sun Jun 21 2020 01:22:55 GMT+0530 (India Standard Time)
Ejemplo 2:
// Node.js program to demonstrate the // stats.birthtime property // Accessing fs module const fs = require('fs').promises; // Calling fs.Stats stats.birthtime (async () => { const stats = await fs.stat('./example_file.txt'); // The timestamp when the file is created console.log("Using stat synchronous: " + stats.birthtime); })().catch(console.error)
Producción:
Using stat synchronous: Sun Jun 21 2020 01:22:55 GMT+0530 (India Standard Time)
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_birthtime