Skip to content

Instantly share code, notes, and snippets.

@AlaeddineMessadi
Last active February 12, 2021 00:31
Show Gist options
  • Save AlaeddineMessadi/e06446bb8a9737c730567f21875f64c8 to your computer and use it in GitHub Desktop.
Save AlaeddineMessadi/e06446bb8a9737c730567f21875f64c8 to your computer and use it in GitHub Desktop.
javascript, node : List all files in specific folder
const fs = require('fs');
fs.readdirSync('.').forEach(file => {
console.log(file);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment