Node.js-批量更改文件名序号
# 批量更改文件名序号(xxx.xxxx)
# 场景:
在使用vuepress写文章的时候,遇到文件序号的文件问题——文件夹内文件名的序号,没有按照顺序排列
使用nodejs编写脚本解决
实现如下:
var fs = require("fs");
// 接收参数(文件夹路径)
var args = process.argv.slice(2);
if (args.length === 0) {
console.log("请输入文件夹路径");
return;
}
var path = args[0];
fs.readdir(path,function(err, files){
if (err) {
return console.error(err);
}
files.forEach(function (fileName, index) {
// 索引加1,因为文件夹索引是从0开始的
const fileNameindex = index + 1;
// 新序号
const number = fileNameindex.toString().padStart(2, '0')
// 提取文件名.及後面的字符串
const startIndex = fileName.indexOf('.')
const newName = number + fileName.substring(startIndex)
// 修改文件名
fs.rename(`${path}/${fileName}`, `${path}/${newName}`, function (err) {
if (err) throw err;
console.log('renamed complete');
});
});
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
上次更新: 2024/08/14, 04:14:33