El método stats.isFile() es una interfaz de programación de aplicaciones incorporada de la clase fs.Stats que se utiliza para verificar si el objeto fs.Stats describe un archivo o no.
Sintaxis:
stats.isFile();
Parámetros: este método no acepta ningún parámetro.
Valor devuelto: este método devuelve un valor booleano, que es verdadero si el objeto fs.Stats describe un archivo, de lo contrario, es falso.
Los siguientes ejemplos ilustran el uso del método stats.isFile() en Node.js:
Ejemplo 1:
// Node.js program to demonstrate the // stats.isFile() method // Accessing fs module const fs = require('fs'); // Calling fs.Stats isFile() method fs.stat('./filename.txt', (err, stats) => { if (err) throw err; // console.log(`stats: ${JSON.stringify(stats)}`); console.log(stats.isFile()); }); fs.stat('./filename.txt', (err, stats) => { if (err) throw err; // console.log(`stats: ${JSON.stringify(stats)}`); if (stats.isFile()) { console.log("fs.Stats describes a file"); } else { console.log("fs.Stats does not describe a file"); } });
Producción:
true fs.Stats describes a file
Ejemplo 2:
// Node.js program to demonstrate the // stats.isFile() method // Accessing fs module const fs = require('fs'); // Calling fs.Stats isFile() method fs.stat('./', (err, stats) => { if (err) throw err; // console.log(`stats: ${JSON.stringify(stats)}`); console.log(stats.isFile()); }); fs.stat('./', (err, stats) => { if (err) throw err; // console.log(`stats: ${JSON.stringify(stats)}`); if (stats.isFile()) { console.log("fs.Stats describes a file"); } else { console.log("fs.Stats does not describe a file"); } });
Producción:
false fs.Stats does not describe a file
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_isfile