gpt4 book ai didi

node.js - node.js 中的 Zip 存档

转载 作者:IT老高 更新时间:2023-10-28 21:53:57 26 4
gpt4 key购买 nike

我想创建一个 zip 存档并在 node.js 中解压。

我找不到任何 Node 实现。

最佳答案

node-core 内置了 zip 功能:http://nodejs.org/api/zlib.html

使用它们:

var zlib = require('zlib');
var gzip = zlib.createGzip();
var fs = require('fs');
var inp = fs.createReadStream('input.txt');
var out = fs.createWriteStream('input.txt.gz');

inp.pipe(gzip).pipe(out);

关于node.js - node.js 中的 Zip 存档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5754153/

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