The fs.promise.readdir() method defined in the File System module of Node.js. The file System module is basically to interact with the hard disk of the users computer. The readdir() method is used to read the files and folders names. The fs.promise.readdir() method returns a resolved or rejected promise and hence avoid the callback nesting or callback hell problems that may occur in fs.readdir() method.
Syntax
fs.promise.readdir(path, options)
Parameter: This method accepts two parameters as mentioned above and described below:
- path: It is a string, buffer or url that specifies the path to the directory, whose contents is to be read.
- options: It is an optional parameter and used to specify encoding techniques (default-utf8) etc.
Return Value: It returns a resolved or rejected promise. The promise is resolved with the list of the names of files and folders if a directory is successfully read otherwise rejected with an error object if any error is occurred (example-specified directory not exist or does not have permissions to read files etc).
Example 1:
javascript
const fs = require( 'fs' )
fs.promises.readdir(process.cwd())
.then(filenames => {
for (let filename of filenames) {
console.log(filename)
}
})
. catch (err => {
console.log(err)
})
|
Output: Read and display the contents of current working directory ‘gfgExamples’
Example 2:
javascript
const fs = require( 'fs' )
const targetDir = process.argv[2] || process.cwd()
fs.promises.readdir(targetDir)
.then(filenames => {
for (let filename of filenames) {
console.log(filename)
}
})
. catch (err => {
console.log(err)
})
|
Output: Read and display the contents of one directory back to current working directory ‘gfgExamples’.
Reference: https://nodejs.org/docs/latest/api/fs.html#fs_fspromises_readdir_path_options
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
06 Apr, 2023
Like Article
Save Article