2017-10-03 14 views

答えて

2

writable streamに書きます。

fs.createReadStream(filePath + "/" + fileName) 
    .pipe(replaceStream(imagePath, newPath)) 
    .pipe(fs.createWriteStream(filePath + "/" + newFileName)); 
関連する問題