Skip to content

Instantly share code, notes, and snippets.

@2Pacalypse-
2Pacalypse- / rename.js
Last active February 6, 2016 15:09
Renames replays from TL tournament system to be under 32 characters in length.
import fs from 'fs'
fs.readdir('.', (err, files) => {
if (err) {
console.log('err: ' + err)
return
}
files.forEach((file) => {
if (!file.endsWith('.rep')) {