0

我正在使用https://archiverjs.com/docs/为我的 PhoneGap 应用程序压缩目录,但我还没有设法实现我想要的。

我有一个结构如下的文件夹: - www - css - 图像 - 脚本 - config.xml - index.html

现在我想要的是一个包含 www 文件夹的内容但不包含 www 本身的 zip 文件。

BAD
 - www.zip
   - www
      - css
      - images
      - scripts
      - config.xml
      - index.html
GOOD
 - www.zip
   - css
   - images
   - scripts
   - config.xml
   - index.html

我的代码如下:

var archiver = require('archiver');

var output = fs.createWriteStream('./www/www.zip');
var archive = archiver('zip', {
   store: true // Sets the compression method to STORE.
});

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('error', function(err) {
  throw err;
});

archive.pipe(output);
archive.directory('www/');
archive.finalize();

我试图添加类似:archive.directory('www/*'); 但它会引发错误。

我还有其他方法可以做到吗?谢谢

4

1 回答 1

0

我找到了解决方案,我只需要执行以下操作:

archive.directory('www', '/');

问题解决了 :)

谢谢

于 2017-04-27T16:57:42.443 回答