La propiedad stats.ctimeNs 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 estado del archivo se cambió por última vez desde la época POSIX expresada en nanosegundos.
Sintaxis:
stats.ctimeNs;
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 devuelto: Devuelve un número o valor BigInt que representa la marca de tiempo cuando el estado del archivo ha cambiado por última vez desde la época POSIX expresada en nanosegundos.
Los siguientes ejemplos ilustran el uso de la propiedad stats.ctimeNs en Node.js:
Ejemplo 1:
// Node.js program to demonstrate the // stats.ctimeNs property // Accessing fs module const fs = require('fs'); // Calling stats.ctimeNs property // from fs.Stats class using stat fs.stat('./', { bigint: true }, (err, stats) => { if (err) throw err; // The timestamp when the file status // has been changed last time (in NS) console.log("Using stat: " + stats.ctimeNs); }); // Using lstat fs.lstat('./filename.txt', { bigint: true }, (err, stats) => { if (err) throw err; // The timestamp when the file status // has been changed last time (in NS) console.log("Using lstat: " + stats.ctimeNs); });
Producción:
Using stat: 1592665604516105.7 Using lstat: 1592665807796265
Ejemplo 2:
// Node.js program to demonstrate the // stats.ctimeNs property // Accessing fs module const fs = require('fs').promises; // Calling fs.Stats stats.ctimeNs (async () => { const stats = await fs.stat( './filename.txt', { bigint: true }); // The timestamp when the file // status has been changed last // time (in NS) console.log("Using stat synchronous: " + stats.ctimeNs); })().catch(console.error)
Producción:
Using stat synchronous: 1592665807796265
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_ctimens