我正在节点中编写一个progrma并使用replaceStream并且我想将replacestream写入一个文件,但我现在要写的所有内容都是使用以下代码打印到控制台:< / p>
width: 960px;
position: absolute;
top: 20px;
left: 50%;
transform:translateX{-50%}
z-index: 999
答案 0 :(得分:2)
只需将其写入writable stream。
fs.createReadStream(filePath + "/" + fileName)
.pipe(replaceStream(imagePath, newPath))
.pipe(fs.createWriteStream(filePath + "/" + newFileName));