![]() |
VOOZH | about |
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:
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:
Output: Read and display the contents of current working directory 'gfgExamples' 👁 Image
Example 2:
Output: Read and display the contents of one directory back to current working directory 'gfgExamples'. 👁 Image
Reference: https://nodejs.org/docs/latest/api/fs.html#fs_fspromises_readdir_path_options