案例:Node简单、流式文件的读取写入

在这里插入图片描述

一、异步简单的读取写入

// 异步简单的读取写入
fs.readFile('hello3.txt',function (err,data) {
    if (!err){
        // console.log(data.toString());
        fs.writeFile('hello5.txt',data,function (err) {
            if (!err) {
                console.log('读取成功了~~~');
            }
        });
    }
})

二、同步简单的读取写入

// 同步简单的读取写入
var rf = fs.readFileSync('hello2.txt');
// console.log(rf.toString());
fs.writeFileSync('hello7.txt',rf);

三、流式的读取写入

// 流式读取写入
var rs = fs.createReadStream('hello2.txt'); // 创建可读流
// rs.on('data',function (err) {
//     console.log(err);
// })  // 可省略
var ws = fs.createWriteStream('hello8.txt'); // 创建可写流
rs.pipe(ws);

pipe() 可以将可读流中的内容,直接输出到可写流中。

四、其他知识

发布了161 篇原创文章 · 获赞 71 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/qq_44034384/article/details/100006389
今日推荐