Answers for "node js get folder name from path"

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
1

nodejs dirname

// Source Code: lib/path.js
// Description: The path module provides utilities for working with file and 
//              directory paths. It can be accessed using:

const path = require('path')
path.dirname('/foo/asdf/quux') 
// Returns:  '/foo/asdf'
/*	 dirname(Value <string>) Returns: <string>
  The path.dirname() method returns the directory name of a path, 
  similar to the Unix dirname command. Trailing directory separators 
  are ignored, see path.sep. A TypeError is thrown if path is not a string.   */
Posted by: Guest on June-19-2021

Code answers related to "node js get folder name from path"

Code answers related to "Javascript"

Browse Popular Code Answers by Language