La propiedad stats.mtime es una interfaz de programación de aplicaciones incorporada de la clase fs.Stats que se usa para obtener la marca de tiempo cuando el archivo se modificó por última vez.
Sintaxis:
stats.mtime;
Parámetros: Propiedades no tiene ningún parámetro.
Valor de retorno: Devuelve una fecha que representa la marca de tiempo cuando el archivo se modificó por última vez.
Los siguientes ejemplos ilustran el uso de la propiedad stats.mtime en Node.js:
Ejemplo 1:
// Node.js program to demonstrate the // stats.mtime Property // Accessing fs module const fs = require('fs'); // Calling fs.Stats stats.mtime // using stat fs.stat('./', (err, stats) => { if (err) throw err; // The timestamp when the file // is last modified console.log("Using stat: " + stats.mtime); }); //using lstat fs.lstat('./filename.txt', (err, stats) => { if (err) throw err; // The timestamp when the file // is last modified console.log("Using lstat: " + stats.mtime); });
Producción:
Using stat: Sun Jun 21 2020 01:08:08 GMT+0530 (India Standard Time) Using lstat: Sun Jun 21 2020 01:10:16 GMT+0530 (India Standard Time)
Ejemplo 2:
// Node.js program to demonstrate the // stats.mtime Property // Accessing fs module const fs = require('fs').promises; // Calling fs.Stats stats.mtime (async () => { const stats = await fs.stat('./filename.txt'); // The timestamp when the file // is last modified console.log("Using stat synchronous: " + stats.mtime); })().catch(console.error)
Producción:
Using stat synchronous: Sun Jun 21 2020 01:10:16 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_mtime