Skip to content

Instantly share code, notes, and snippets.

@Eth3rnit3
Created January 4, 2019 17:33
Show Gist options
  • Save Eth3rnit3/3fd88f8966dc33bfdb3dd60e84c1a2ad to your computer and use it in GitHub Desktop.
Save Eth3rnit3/3fd88f8966dc33bfdb3dd60e84c1a2ad to your computer and use it in GitHub Desktop.
const fs = require('fs');
module.exports = {
getFilesNames: (path='./uploads') => {
let files = fs.readdirSync(path)
return files
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment