El método fs.Dirent.isFIFO() es una interfaz de programación de aplicaciones incorporada de la clase fs.Dirent dentro del módulo del sistema de archivos que se utiliza para comprobar si el dirent particular describe una tubería de primero en entrar, primero en salir o no.
Sintaxis:
const dirent.isFIFO()
Parámetro: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve verdadero si el dirent particular describe una tubería de primero en entrar, primero en salir; de lo contrario, es falso.
Los siguientes programas ilustran el uso del método fs.dirent.isFIFO() en Node.js:
Ejemplo 1:
Nombre de archivo: index.js
javascript
// Node.js program to demonstrate the // dirent.isFIFO() method const fs = require('fs'); // Initiating async function async function stop(path) { // Creating and initiating FIFO's // underlying resource handle const dir = await fs.promises.opendir(path); // Synchronously reading the FIFO's // underlying resource handle // using readSync() method for(var i = 0; i <= 3; i ++ ) { // Checking if the particular dirent is // FIFO or not by using isFIFO() method const value = (dir.readSync()).isFIFO(); // Display the result console.log(dir.readSync()); console.log(value); } } // Catching error stop('./').catch(console.error);
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
Dirent { name: 'cert.cer', [Symbol(type)]: 1 } false Dirent { name: 'certificate1.cer', [Symbol(type)]: 1 } false Dirent { name: 'filename.txt', [Symbol(type)]: 1 } false Dirent { name: 'GFG.java', [Symbol(type)]: 1 } false
Ejemplo 2:
Nombre de archivo: index.js
javascript
// Node.js program to demonstrate the // dirent.isFIFO() method const fs = require('fs'); // Initiating async function async function stop(path) { let dir = null; try { // Creating and initiating directory's // underlying resource handle dir = await fs.promises.opendir( new URL('file:///F:/java/')); // Synchronously reading the FIFO's // underlying resource handle // using readSync() method for(var i = 0; i <= 3; i ++ ) { // Checking if the particular dirent is // FIFO or not by using isFIFO() method const value = (dir.readSync()).isFIFO(); // Display the result console.log(dir.readSync()); console.log(value); } } finally { if (dir) { // Display the result console.log("dir is closed successfully"); // Synchronously closeSyncing the directory's // underlying resource handle const promise = dir.closeSync(); } } } // Catching error stop('./').catch(console.error);
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
Dirent { name: 'cert.cer', [Symbol(type)]: 1 } false Dirent { name: 'certificate1.cer', [Symbol(type)]: 1 } false Dirent { name: 'features', [Symbol(type)]: 2 } false Dirent { name: 'GFG.class', [Symbol(type)]: 1 } false dir is closed successfully
Referencia: https://nodejs.org/dist/latest-v12.x/docs/api/fs.html#fs_dirent_isfifo
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA