Node.js stats.mtimeNs Propiedad

La propiedad stats.mtimeNs 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 nanosegundos.

Sintaxis:

stats.mtimeNs;

Parámetros: las propiedades no tienen ningún parámetro, pero durante la creación del objeto de estadísticas {bigint:true} debe pasarse como opciones.

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 nanosegundos.

Los siguientes ejemplos ilustran el uso de la propiedad stats.mtimeNs en Node.js:

Ejemplo 1:

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

Producción:

Using stat: 1592665056784809
Using lstat: 15926651836820176

Ejemplo 2:

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

Producción:

Using stat synchronous: 15926651836820176

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_mtimens

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 *