const { readdirSync, rename } = require('fs');
const { resolve } = require('path');
// Папка со всеми файлами
const imageDirPath = resolve(__dirname, '[folder_name]');
const imageNewDirPath = resolve(__dirname, '[new_folder_name]');
// Массив файлов из папки
const files = readdirSync(imageDirPath);
// Цикл по файлам
files.forEach(file => rename(
imageDirPath + `/${file}`,
imageNewDirPath + `/${file}`,
err => console.log(err)
));