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

La propiedad stats.ctimeMs 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 milisegundos.

Sintaxis:

stats.ctimeMs;

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

Los siguientes ejemplos ilustran el uso de stats.ctimeMs en Node.js:

Ejemplo 1:

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

Producción:

using stat: 1592665604516.1057
using lstat: 1592665807796.265

Ejemplo 2:

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

Producción:

using stat synchronous: 1592665807796.265

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_ctimems

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 *