Closed
Description
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:
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
Labels
No labels