多 文 件 合 并

文章介绍了如何使用Node.js的fs模块异步读取多个文本文件(file1.txt,file2.txt,file3.txt),并将内容逐个追加到result.txt中,通过循环和模板字符串处理大量文件的合并过程。
摘要由CSDN通过智能技术生成

  

要 求:创 建 三 个 文 本 文 档 , 注 意 , 使 用 u t f 8 编 码 分 别 进 行 读 取 将 读 取 内 容 追 加 到 一 个 新 文 件 中 完 成 文 件 合 并 实 现 步 骤 ( 1 ) 创 建 三 个 文 本 文 档

file 1.t x t file 2.t x t file 3.t x t

( 2 ) 读 取 file 1.t x t

( 3 ) 将 读 取 内 容 追 加 到 一 个 新 文 件 中

( 4 ) 分 别 读 取 另 外 两 个 文 件 , 同 理 进 行 合 并 , 完 成 文 件 合 并 因 为 异 步 执 行 , 合 并 次 序 会 有 不 同 解 决 这 个 问 题 , 需 要 进 一 步 学 习...

let fs = require('fs')

fs.readFile('file1.txt',func t i o n ( e r r , d a t a ) { i f ( e r r ) { c o n s o l e . l o g ( e r r ) ; } e l s e { c o n s o l e . l o g ( d a t a ) ; } } )

l e t f s = r e q u i r e ('f s')

f s . r e a d F i l e ('f i l e 1 . t x t', f u n c t i o n ( e r r , d a t a ) { i f ( e r r ) { c o n s o l e . l o g ( e r r ) ; } e l s e { f s . a p p e n d F i l e ('r e s u l t . t x t', d a t a , f u n c t i o n ( e r r ) { i f ( e r r ) { c o n s o l e . l o g ( e r r ) ; } e l s e { c o n s o l e . l o g ( " f i l e 1 . t x t 合 并 成 功 " ) ; } } ) / / c o n s o l e . l o g ( d a t a ) ;

} } )

(5)如果数量较多,这种方法就不现实了,通过改造成循环,解决这个问题 注意两个技术点: 使用模板字符串拼接变量 实现异步调用的循环时,需要使用let定义循环变量i,否则,i值只能获取循环最后的值。

let fs = require('fs')

fs.readFile('file1.txt',function (err,data) { if (err) { console.log(err); } else { fs.appendFile('result.txt',data,function (err) { if (err) { console.log(err); } else { console.log("file1.txt合并成功"); } }) } })

fs.readFile('file2.txt',function (err,data) { if (err) { console.log(err); } else { fs.appendFile('result.txt',data,function (err) { if (err) { console.log(err); } else { console.log("file2.txt合并成功"); } }) } })

fs.readFile('file3.txt',function (err,data) { if (err) { console.log(err); } else { fs.appendFile('result.txt',data,function (err) { if (err) { console.log(err); } else { console.log("file3.txt合并成功"); } }) } })

let fs = require('fs')

for (let i = 1; i 4; i++) { fs.readFile(`file${i}.txt`,function (err,data) { if (err) {

     

console.log(err); } else { fs.appendFile('result.txt',data,function (err) { if (err) { console.log(err); } else { console.log(`file${i}.txt合并成功`); } }) } }) }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值