EN
Node.js - list files and directories from directory
0 points
In this article, we would like to show you how to get a list of the names of all files/directories in a specified directory in Node.js.
Quick solution:
xxxxxxxxxx
1
const fs = require('fs');
2
3
fs.readdir('/path/to/directory'[, options], (error, files) => {
4
if (error) throw error;
5
console.log(files);
6
});
Synchronous version:
xxxxxxxxxx
1
const fs = require('fs');
2
3
fs.readdirSync('/path/to/directory').forEach(file => {
4
console.log(file);
5
});
Projects structure
xxxxxxxxxx
1
Project/
2
|
3
+-- my_directory/
4
| |
5
| +-- file.json
6
|
7
+-- my_script.js
my_script.js
xxxxxxxxxx
1
const fs = require('fs');
2
3
fs.readdir('./', (error, files) => {
4
if (error) throw error;
5
console.log(files);
6
});
Output:
xxxxxxxxxx
1
[
2
'my_directory',
3
'my_script.js'
4
]