“Knoten Js erhalten Dateien in dir” Code-Antworten

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

Knoten Js erhalten Dateien 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);
    }
  }
);
garzj

Ähnliche Antworten wie “Knoten Js erhalten Dateien in dir”

Fragen ähnlich wie “Knoten Js erhalten Dateien in dir”

Weitere verwandte Antworten zu “Knoten Js erhalten Dateien in dir” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen