.bz2 管道提取与 Node.js.



我想用 tar.gz node.js 像下面这样提取 .tar.bz2

request.get("localhost/file.tar.gz")
.pipe(zlib.createGunzip())
.pipe(tar.Extract({path: "./test"}))
.on("error", function(err){
    console.log("Error on extract", err);
})
.on("end", function(){
    console.log("done.");
});

"zlib.createGunzip()"部分应该替换为bz2-deflator。有谁知道这个问题的工作包?

谢谢

使用 https://github.com/regular/unbzip2-stream。

然后 https://github.com/mafintosh/tar-fs。

不是我的回购。

例:

const fs = require('fs');
const bz2 = require('unbzip2-stream');
const tarfs = require('tar-fs');
fs.createReadStream('foo.tar.bz2').pipe(bz2()).pipe(tarfs.extract('data'));

上面的示例将foo.bar.bz2提取到data/目录中。

他们在这里也讨论同样的问题: https://github.com/cscott/seek-bzip/issues/1

相关内容

  • 没有找到相关文章

最新更新