Skip to content

Instantly share code, notes, and snippets.

@autioch
Created November 25, 2015 21:19
Show Gist options
  • Save autioch/7c6b07e3aba43aede96b to your computer and use it in GitHub Desktop.
Save autioch/7c6b07e3aba43aede96b to your computer and use it in GitHub Desktop.
Save dir contents to file
let dirToRead = 'e:/tmp';
let outputFile = 'e:/output.js';
fs.readdir(dirToRead, function(err, data){
if (err){
return console.log(err);
}
fs.writeFile(outputFile, "[\n'"+data.join("',\n'")+"'\n]");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment