1、首先,新建copyFile.js。
2、安装fs模块,用于文件操作。
3、使用fs.readdirSync()方法读取指定目录下的所有文件。
4、遍历文件列表,检查文件扩展名是否为.html。
6、如果是HTML文件,则使用fs.readFileSync()方法读取文件内容。
7、在文件内容中插入指定内容。
8、使用fs.writeFileSync()方法将修改后的内容写回文件。
// 引用fs模块和路径匹配模块
const fs = require('fs');
const path = require('path');
// 指定目录和要插入的内容
const directory = '../html/archives';
const contentToInsert = '{include file="view/service.html" /}';
// 读取目录下的所有文件
const files = fs.readdirSync(directory);
// 遍历文件列表
files.forEach((file) => {
// 检查文件扩展名是否为.html
if (path.extname(file) === '.html') {
// 读取文件内容
const fileContent = fs.readFileSync(path.join(directory, file), 'utf-8');
// 在文件内容中插入指定内容
const modifiedContent = fileContent.replace('</body>', `${contentToInsert}
</body>`);
// 将修改后的内容写回文件
fs.writeFileSync(path.join(directory, file), modifiedContent, 'utf-8');
}
});
最后,在终端下运行命令node copyFile.js来执行文件中的代码就可以把指定内容写入相应的html文件啦~~~