Node.js stats.birthtimeNs Propiedad

La propiedad stats.birthtimeNs 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.birthtimeNs;

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

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.birthtimeNs en Node.js:

Ejemplo 1:

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

Producción:

Using stat: 1589375311991945.3
Using lstat: 1592667100334387

Ejemplo 2:

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

Producción:

Using stat synchronous: 1592667100334387

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_birthtimens

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 *