Node.js stats.ino Propiedad

La propiedad stats.ino es una interfaz de programación de aplicaciones incorporada de la clase fs.Stats que se utiliza para obtener el número de «iNode» del archivo especificado por el sistema de archivos.

Sintaxis:

stats.ino;

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

Valor devuelto: Devuelve un número o valor BigInt que representa el número de «INode» del archivo especificado por el sistema de archivos.

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

Ejemplo 1:

// Node.js program to demonstrate the   
// stats.ino Property
  
// Accessing fs module
const fs = require('fs');
  
// Calling stats.ino property from
// fs.Stats  class
// For files using stat
fs.stat('./filename.txt', (err, stats) => {
    if (err) throw err;
    console.log("using stat: the \"Inode\" "
        + "number of the file is  " + stats.ino);
});
  
// Using lstat
fs.lstat('./filename.txt', (err, stats) => {
    if (err) throw err;
    console.log("using lstat: the \"Inode\" "
        + "number of the file is  " + stats.ino);
});
  
// For directories using stat
fs.stat('./', (err, stats) => {
    if (err) throw err;
    console.log("using stat: the \"Inode\" "
        + "number of the file is  " + stats.ino);
});
  
//using lstat
fs.lstat('./', (err, stats) => {
    if (err) throw err;
    console.log("using lstat: the \"Inode\" "
    + "number of the file is  " + stats.ino);
});

Producción:

using stat: the "Inode" number of the file is  1125899907737972
using lstat: the "Inode" number of the file is  1125899907737972
using stat: the "Inode" number of the file is  14918173765820528
using lstat: the "Inode" number of the file is  14918173765820528

Ejemplo 2:

// Node.js program to demonstrate the   
// stats.ino Property
  
// Accessing fs module
const fs = require('fs').promises;
   
// Calling stats.ino property from
// fs.Stats class
(async() => {
  const stats = await fs.stat('./filename.txt');
   
  // Using stat synchronous
  console.log("The \"Inode\" number "
    + "of the file is  "+stats.ino);
})().catch(console.error)

Producción:

The "Inode" number of the file is  1125899907737972

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_ino

Publicación traducida automáticamente

Artículo escrito por gekcho 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 *