Skip to content

Instantly share code, notes, and snippets.

@victorchee
Last active March 28, 2020 06:49
Show Gist options
  • Save victorchee/c311054624457778e600abb1409616b3 to your computer and use it in GitHub Desktop.
Save victorchee/c311054624457778e600abb1409616b3 to your computer and use it in GitHub Desktop.
'use strict';
const fs = require('fs');
const read = fs.readdirSync('./');
let string = '';
for (let i in read) {
const item = read[i];
const index = item.lastIndexOf('.');
string += item.substring(0, index) + '\n';
}
fs.writeFileSync('./imagenames.txt', string);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment