Skip to content

7-zip 9.20 fails to extract zip produced by yazl #11

Closed
@joaomoreno

Description

@joaomoreno

My script creates the simplest zip file possible:

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

var zipfile = new yazl.ZipFile();

var ostream = fs.createWriteStream('out.zip');
zipfile.outputStream.pipe(ostream);

zipfile.addBuffer(new Buffer('hello'), 'hello.txt');
zipfile.end();

I cannot extract this file with 7-zip 9.20 (its latest stable release). This application has a feature that verifies an archive and with the produced zip I get:

screen shot 2015-03-19 at 16 01 09

I can successfully extract it using the native Windows Extract... context menu action. I can also extract it using 7-zip 9.38 (their latest beta release).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions