Get List of all files in a directory in Node.js
const testFolder = './tests/';
const fs = require('fs');
fs.readdir(testFolder, (err, files) => {
files.forEach(file => {
console.log(file);
});
});
Get List of all files in a directory in Node.js
const testFolder = './tests/';
const fs = require('fs');
fs.readdir(testFolder, (err, files) => {
files.forEach(file => {
console.log(file);
});
});
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. */
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us