VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-fs-dir-readsync-method/

⇱ Node.js fs.Dir.readSync() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js fs.Dir.readSync() Method

Last Updated : 6 Feb, 2023

The fs.Dir.readSync() method is an inbuilt application programming interface of class fs.Dir within File System module which is used to read each next dirent of directory.
Syntax: 
 

const dir.readSync()


Parameter: This method does not accept any parameter.
Return Value: This method returns the dirent of the directory.
Below programs illustrates the use of fs.Dir.readSync() method in Node.js:
Example 1: 
Filename: index.js 
 

Run index.js file using the following command: 

node index.js


Output: 

abcd.cer


Example 2: 
Filename: index.js 
 

Run index.js file using the following command: 

node index.js


Output: 

abcd.cer
cert.cer
certfile.cer
certificate1.cer
dir is closed successfully


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

Comment

Explore