JavaScript实现某文件夹下文件重命名(附完整源码)

时间:2025-04-05 12:38:28
const fs = require('fs'); const path = require('path'); function renameFilesInDir(dirPath, oldName, newName) { fs.readdir(dirPath, (err, files) => { if (err) { console.error(err); return; } files.forEach(file => { const filePath = path.join(dirPath, file); fs.stat(filePath, (err, stats) => { if (err) { console.error(err); return; } if (stats.isDirectory()) { // 递归处理子目录 renameFilesInDir(filePath, oldName, newName); } else { if (file === oldName) { // 重命名文件 const newFilePath = path.join(dirPath, newName); fs.rename(filePath, newFilePath, err => { if (err) { console.error(err); } else { console.log(`File ${oldName} renamed to ${newName}`); } }); } } }); }); }); } // 测试代码 const dirPath = './test'; const oldName = ''; const newName = ''; renameFilesInDir(dirPath, oldName, newName);