You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some zipfile saying "Unable to find end of central directory record"
var ZIP = require('zip');
var data = Buffer.from(r)
var reader = ZIP.Reader(data);
//console.log(reader)
reader.forEach(function (entry) { <= here on the forEach
console.log(entry)
});
I can unzip them with the linux unzip command, but not with this tool (nor any other I can found)
The linux unzipping say :
unzip -o sortie_xxar400.zip
Archive: sortie_xxar400.zip
warning [sortie_xxar400.zip]: 22787 extra bytes at beginning or within zipfile
(attempting to process anyway)
inflating: 3128340.log
inflating: ESS_O_3128340_BIP.text
inflating: ESS_O_3128340_BIP.xml
Is there's a way to "force" the unzipping (attempting to process anyway) in typescript ?
Thanks
The text was updated successfully, but these errors were encountered:
I have some zipfile saying "Unable to find end of central directory record"
I can unzip them with the linux unzip command, but not with this tool (nor any other I can found)
The linux unzipping say :
Is there's a way to "force" the unzipping (attempting to process anyway) in typescript ?
Thanks
The text was updated successfully, but these errors were encountered: