Published May 20 2022
I had the need to get all the files in a folder recursively.
The best way I found to do that was to install the glob
library:
npm install glob
I wanted to look for all index.md
files included in the content/post
folder, each file being in its own directory structure, possibly under multiple subfolders:
content/post/first/index.md
content/post/second/index.md
content/post/another/test/index.md
Hereβs how I did it:
const glob = require('glob')
const root_folder = 'content/post'
glob(root_folder + '/**/index.md', (err, files) => {
if (err) {
console.log('Error', err)
} else {
console.log(files)
}
})
I wrote an entire book on this topic π
© 2023 Flavio Copes
using
Notion to Site.
Follow on Twitter
Solopreneur? Wannabe? Adventure awaits