“Lesen Sie das Verzeichnis im Knoten JS” Code-Antworten

Lesen Sie das Verzeichnis im Knoten JS

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

fs.readdir(testFolder, (err, files) => {
  files.forEach(file => {
    console.log(file);
  });
});
Fragile Ferret

So erhalten Sie den Dateinamen im Verzeichnisknoten Js

const fs = require('fs')

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

for (const file of files) {
  console.log(file)
}
Quaint Quail

Knotenlistendateien im Verzeichnis


//requiring path and fs modules
const path = require('path');
const fs = require('fs');
//joining path of directory 
const directoryPath = path.join(__dirname, 'Documents');
//passsing directoryPath and callback function
fs.readdir(directoryPath, function (err, files) {
    //handling error
    if (err) {
        return console.log('Unable to scan directory: ' + err);
    } 
    //listing all files using forEach
    files.forEach(function (file) {
        // Do whatever you want to do with the file
        console.log(file); 
    });
});
Clever Crane

So erhalten Sie den Dateinamen im Verzeichnisknoten Js

const path = require('path')

//...

//inside the `for` loop
const stat = fs.lstatSync(path.join(dir, file))
Quaint Quail

Ähnliche Antworten wie “Lesen Sie das Verzeichnis im Knoten JS”

Fragen ähnlich wie “Lesen Sie das Verzeichnis im Knoten JS”

Weitere verwandte Antworten zu “Lesen Sie das Verzeichnis im Knoten JS” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen