gpt4 book ai didi

node.js - 将replaceStream的输出写入新文件

转载 作者:太空宇宙 更新时间:2023-11-04 03:24:20 25 4
gpt4 key购买 nike

我正在 Node 中编写一个程序并使用 replaceStream我想将替换流写入文件,但我现在所能做的就是使用以下代码打印到控制台:

fs.createReadStream(filePath + "/" + fileName)
.pipe(replaceStream(imagePath, newPath))
.pipe(process.stdout);

最佳答案

只需将其写入 writable stream .

fs.createReadStream(filePath + "/" + fileName)
.pipe(replaceStream(imagePath, newPath))
.pipe(fs.createWriteStream(filePath + "/" + newFileName));

关于node.js - 将replaceStream的输出写入新文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46547415/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com