来自当前文件夹的Zip应用程序

时间:2017-10-05 09:28:35

标签: javascript node.js zip archive

我是node.js应用程序,我需要使用命令来压缩所有当前文件夹 并获取根

上的zip

为此,我想使用archiver npm包,但我不明白以下内容:

  
      
  1. 我把当前文件夹(因为我想压缩所有应用程序)
  2.   
  3. 我应该在哪里放置zip的名称(执行命令时应该创建的zip文件)
  4.   

我的应用具有以下结构

MyApp
  Node_modules
  server.js
  app.js 
  package.json
  arc.js

arc.js中我放了所有的zip逻辑,所以我想我需要提供zipPath(在我的例子中是'./') 和zip名称像myZip ...

我尝试了以下但没有成功,任何想法?

var fs = require('fs');
var archiver = require('archiver');

// create a file to stream archive data to.
var output = fs.createWriteStream(__dirname + '/.');
var archive = archiver('zip', {
    zlib: { level: 9 } // Sets the compression level.
});

// listen for all archive data to be written
output.on('close', function() {
    console.log(archive.pointer() + ' total bytes');
    console.log('archiver has been finalized and the output file descriptor has closed.');
});

archive.on('warning', function(err) {
    if (err.code === 'ENOENT') {
        // log warning
    } else {
        // throw error
        throw err;
    }
});

// good practice to catch this error explicitly
archive.on('error', function(err) {
    throw err;
});

// pipe archive data to the file
archive.pipe(output);

当我打开像

这样的命令行时,我需要这样做

folder->myApp->运行zip arc并在当前路径下创建压缩文件(在这种情况下是根...)

2 个答案:

答案 0 :(得分:0)

github of node-archiver中有一个example folder

  

我把当前文件夹放在哪里(因为我想拉链所有文件夹)   申请)

示例:

var file1 = __dirname + '/fixtures/file1.txt';
var file2 = __dirname + '/fixtures/file2.txt';

archive
  .append(fs.createReadStream(file1), { name: 'file1.txt' })
  .append(fs.createReadStream(file2), { name: 'file2.txt' })
  .finalize();

特别是关于您的案例和目录,您可以使用.directory() method of archiver

  

我应该在哪里放置zip的名称(应该创建的zip   执行命令时)

示例:

var output = fs.createWriteStream(__dirname + '/example-output.zip');

答案 1 :(得分:0)

您可以使用glob方法,但请务必排除*.zip个文件。否则,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.
});

// listen for all archive data to be written
output.on('close', function () {
    console.log(archive.pointer() + ' total bytes');
    console.log('archiver has been finalized and the output file descriptor has closed.');
});

// good practice to catch warnings (ie stat failures and other non-blocking errors)
archive.on('warning', function (err) {
    if (err.code === 'ENOENT') {
        // log warning
    } else {
        // throw error
        throw err;
    }
});

// good practice to catch this error explicitly
archive.on('error', function (err) {
    throw err;
});

// pipe archive data to the file
archive.pipe(output);

archive.glob('**/*', { ignore: ['*.zip'] });

archive.finalize();