1. 读取文件
由于node是服务器端程序,必须要能读写文件,客户端没有读写文件功能
1.1 读取方式
a. 直接读取
将硬盘上的内容全部读入内存后才能触发回调函数
//同步:
var data = fs.readFileSync('文件路径'); // 几乎所有的fs函数都有同步方法,只要加个Sync
//异步:
fs.readFile('文件路径',function(err,data){}
b. 流式读取
将数据从硬盘中读取一节,就触发回调函数,实现大文件操作
2. 写文件
a. 同步版本
fs.writeFileSync('文件名','数据');
b. 异步版本
fs.writeFile('文件名','数据',function(err){});
3. 实现代码
var fs = require('fs');
/*
//直接读取文件,异步
console.log('111');
fs.readFile('./2-file1.txt',function(err,data){
console.log(data.toString());
});
console.log('222');
*/
/*
//直接读取文件,同步
console.log('111');
var data = fs.readFileSync('./2-file1.txt');
console.log(data.toString());
console.log('222');
*/
//写文件
var hello = '<h1>hello</h1>';
fs.writeFile('4-index.html',hello,function(err){
if(err){
throw err;
}else{
console.log('success');
}
});