Propiedad Node.js stats.mtimeMs de la clase fs.Stats

La propiedad stats.mtimeMs 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 desde la época POSIX expresada en milisegundos.

Sintaxis:

stats.mtimeMs;

Parámetros: Esta propiedad no acepta ningún parámetro.

Valor de retorno: Devuelve un número o valor BigInt que representa la marca de tiempo cuando el archivo se modificó por última vez desde la época POSIX expresada en milisegundos.

Los siguientes ejemplos ilustran el uso de la propiedad stats.mtimeMs en Node.js:
Ejemplo 1:

// Node.js program to demonstrate the   
// stats.mtimeMs Property
  
// Accessing fs module
const fs = require('fs');
  
// Calling fs.Stats stats.mtimeMs
// property using stat
fs.stat('./', (err, stats) => {
    if (err) throw err;
  
    // The timestamp when the file
    // is last modified (in MS) 
    console.log("Using stat: " + stats.mtimeMs);
});
  
// Using lstat
fs.lstat('./filename.txt', (err, stats) => {
    if (err) throw err;
  
    // The timestamp when the file 
    // is last modified (in MS)
    console.log("Using lstat: " 
            + stats.mtimeMs);
});

Producción:

Using stat: 1592665056784.809
Using lstat: 1592665183682.0176

Ejemplo 2:

// Node.js program to demonstrate the   
// stats.mtimeMs Property
  
// Accessing fs module
const fs = require('fs').promises;
  
// Calling fs.Stats stats.mtimeMs
(async () => {
    const stats = await fs.stat('./filename.txt');
  
    // The timestamp when the file
    // is last modified (in MS) 
    console.log("using stat synchronous: "
                + stats.mtimeMs);
})().catch(console.error)

Producción:

Using stat synchronous: 1592665183682.0176

Nota: El programa anterior se compilará y ejecutará usando el node filename.jscomando y usará file_path correctamente.

Referencia: https://nodejs.org/api/fs.html#fs_stats_mtimems

Publicación traducida automáticamente

Artículo escrito por vyer y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *