Answers for "nodejs get path from filename"

3

how to get file name in directory node js

const fs = require('fs')

const dir = '/Users/flavio/folder'
const files = fs.readdirSync(dir)

for (const file of files) {
  console.log(file)
}
Posted by: Guest on October-16-2020
2

how to get file name in directory node js

const path = require('path')

//...

//inside the `for` loop
const stat = fs.lstatSync(path.join(dir, file))
Posted by: Guest on October-16-2020
0

node get path of current file

module.filename
Posted by: Guest on February-22-2021

Code answers related to "nodejs get path from filename"

Code answers related to "Javascript"

Browse Popular Code Answers by Language