Read directory async (readdir)
- readdir
const fs = require('fs')
fs.readdir('.', function (err, things) {
console.log(things)
});
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
const fs = require('fs')
fs.readdir('.', function (err, things) {
console.log(things)
});