web建站教程
  1. 首页
  2. vuejs
  3. js
  4. 好玩
  5. AIGC工具
  6. 前端知识
  7. 百度echarts
  8. 更多
    php入门
    nodejs
    mockjs
    reactjs
    mysql
    wordpress
    织梦cms
    帝国cms
    git教程
    IT知识
    模板大全
    休息站
    手机应用

nodejs如何实现zip压缩和zip解压

2275 ℃

nodejs如何实现zip压缩zip解压,下面web建站小编给大家详细介绍一下实现代码!

zip压缩代码:

// require modules
var fs = require("fs");
var archiver = require("archiver");
 
// create a file to stream archive data to.
var output = fs.createWriteStream(__dirname + "/example.zip");
var archive = archiver("zip", {
  zlib: { level: 9 }, // Sets the compression level.
});
 
// pipe archive data to the file
archive.pipe(output);
 
// append a file from stream
var file1 = __dirname + "/file1.txt";
archive.append(fs.createReadStream(file1), { name: "file1.txt" });
 
// append a file from string
archive.append("string cheese!", { name: "file2.txt" });
 
// append a file from buffer
var buffer3 = Buffer.from("buff it!");
archive.append(buffer3, { name: "file3.txt" });
 
// append a file
archive.file("file1.txt", { name: "file4.txt" });
 
// append files from a sub-directory and naming it `new-subdir` within the archive
archive.directory("subdir/", "new-subdir");
 
// append files from a sub-directory, putting its contents at the root of archive
archive.directory("subdir/", false);
 
// append files from a glob pattern
archive.glob("subdir/*.txt");
 
archive.finalize();

zip解压代码:

var fs = require("fs");
var unzip = require("unzip");
 
fs.createReadStream("archiver-unzip.zip").pipe(
  unzip.Extract({ path: "unarchive" })
);

Linux系统如何更新升级node版本

Node中文官网介绍(优点介绍)

nodejs如何利用buffer转为十六进制

nodejs如何利用模板引擎设置字体大小

nodejs如何实现限流防止DDos攻击

标签: zip压缩, zip解压

上面是“nodejs如何实现zip压缩和zip解压”的全面内容,想了解更多关于 nodejs 内容,请继续关注web建站教程。

当前网址:https://ipkd.cn/webs_3145.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

当前位置: 网站首页 > nodejs
本文共计1108个字,预计阅读时长8分钟

基金从业资格考试题库

一站式备考基金从业资格考试,收录2021-2025年模拟题库!呱呱工具箱

AI工作站

收录全球3800+ 款各行各业AI应用,轻轻松松做事!
生活小工具,收录了80多款小工具
上一篇: 推荐一款免费在线图片处理工具——佐糖图片平台
下一篇: 推荐一款优设网免费可商用字体——优设标题黑体
x 打工人ai神器