Answers for "read dir node js"

5

node js get files in dir

const path = require('path');
const fs = require('fs');

fs.readdir(
  path.resolve(__dirname, 'MyFolder'),
  (err, files) => {
    if (err) throw err;
    
    for (let file of files) {
      console.log(file);
    }
  }
);
Posted by: Guest on September-07-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 "Javascript"

Browse Popular Code Answers by Language