问题展示
想实现的效果
根据顺序变成数字顺序,方便后期自己页面开发的渲染
- 先确保自己有node环境电脑安装了node
- 再创建一个index.js文件这个文件放在你导出文件的内
- js内容
const fs = require('fs');
const path = require('path');
// 设置文件夹路径
const folderPath = path.join(__dirname, './'); // 将 'your-folder-path' 替换为你的文件夹路径
// 读取文件夹中的所有文件
fs.readdir(folderPath, (err, files) => {
if (err) {
console.error('Error reading directory:', err);
return;
}
// 过滤出符合条件的文件并重命名
files.forEach((file, index) => {
const oldFilePath = path.join(folderPath, file);
// 检查文件是否符合重命名条件
const newFileName = `${index}.png`; // 修改文件名
const newFilePath = path.join(folderPath, newFileName);
// 重命名文件
fs.rename(oldFilePath, newFilePath, (renameErr) => {
if (renameErr) {
console.error(`Error renaming file ${file}:`, renameErr);
} else {
console.log(`Renamed ${file} to ${newFileName}`);
}
});
});
});
- 执行node指令,打开终端
node index.js
这样就算成功了