使用fs模块
[node中文网](http://api.nodejs.cn/)
打开网页,搜索fs,然后
点击需要使用的方法进入,文档中有详细的使用说明,以下是常用的node.js命令
使用fs模块之前需要将fs模块引入
let fs=require('fs');
fs.readFile
在node环境中读取文件
使用方法:
fs.readFile(path.join(__dirname, './index.html'), 'utf-8', function (err, dataStr) {
if (err) return console.log('读取文件失败') + err.message;
findcss(dataStr);
findjs(dataStr);
});
fs.readFile(path.join(__dirname, './index.html'),编码格式,callback)
fs.writeFile
在node环境中写入文件
fs.writeFile(path.join(__dirname, './timecall.js'), htmlCss, err => {
if (err) return console.log('写入失败') + err.message;
console.log('写入文件成功');
});
fs.writeFile(path.join(__dirname, './index.html'),编码格式,callback)
注意当fs.writeFile重复调用写入时,之前的内容的会被新写入的内容覆盖