VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-fs-dirent-ischaracterdevice-method/

⇱ Node.js fs.Dirent.isCharacterDevice() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js fs.Dirent.isCharacterDevice() Method

Last Updated : 24 Apr, 2023

The fs.Dirent.isCharacterDevice() method is an inbuilt application programming interface of class fs.Dirent within the File System module which is used to check if the particular dirent describes a character device or not.

Syntax: 

const dirent.isCharacterDevice()

Parameter: This method does not accept any parameter.

Return value: This method returns true if the particular dirent describes the character device otherwise false.

Example 1: The below program illustrates the use of fs.dirent.isCharacterDevice() method in Node.js:

Filename: index.js  

Run the index.js file using the following command: 

node index.js

Output:  

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

Example 2: The below program illustrates the use of fs.dirent.isCharacterDevice() method in Node.js:

Filename: index.js 

Run the index.js file using the following command: 

node index.js

Output:  

Dirent { name: 'adonis_auth_api', [Symbol(type)]: 2 }
false
Dirent { name: 'Android Template', [Symbol(type)]: 2 }
false
Dirent { name: 'Calendar', [Symbol(type)]: 2 }
false
Dirent { name: 'first-app', [Symbol(type)]: 2 }
false

Reference: https://nodejs.org/dist/latest-v12.x/docs/api/fs.html#fs_dirent_ischaracterdevice

Comment

Explore