Answers for "node get dir of js fil"

3

read directory in node js

const testFolder = './tests/';
const fs = require('fs');

fs.readdir(testFolder, (err, files) => {
  files.forEach(file => {
    console.log(file);
  });
});
Posted by: Guest on April-09-2021
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