adm-zip
adm-zip copied to clipboard
A Javascript implementation of zip for nodejs. Allows user to create or extract zip files both in memory or to/from disk
On windows platform, if I try to unzip a file `img.jpg` contained in a folder named `images`, I will get a file named `images_img.jpg` and no folder. This seem to...
I'm zipping an excel file with 3 sheets. If I zip just 2 sheets (any combination) or put a limit of rows, it works. Also, without zipping, I'm able to...
if i add big image file( > 25kb ) into zip, and i can't unzip, error code is 2, and infomation is like ' no the file or dir '....
when the file name is Chinese ,it can't display properly
The root module has a `toBuffer()` method with an `onFail` param that is passed to `_zip.toAsyncBuffer()`: https://github.com/cthackers/adm-zip/blob/576f7c5a5ccd529c75c0c7cf870a69856d99ca3a/adm-zip.js#L539 `ZipFile.toAsyncBuffer()` has an `onFail` param that is not used: https://github.com/cthackers/adm-zip/blob/576f7c5a5ccd529c75c0c7cf870a69856d99ca3a/zipFile.js#L229 Currently, I have...
Tried unzipping a 64MB zip file, the following error was thrown: FATAL ERROR: CALL_AND_RETRY_0 Allocation failed - process out of memory
let zip = new AdmZip(zippath); let entry = "images"+path.sep+imagename zip.extractEntryTo(entry, destination, false, true) i hit this code hard on the mac with Async.. works fine on windows i get errors...
the code of compression: ``` javascript zip = new AdmZip(); zip.addLocalFolder(folder); zip.writeZip(zipPath); ``` it works, but when I decompress the zip file, the followed error occurred. ``` error: invalid compressed...
The file what is zipped by adm-zip is hidden when unzip. platform: window.
zip the specified file or content(will make error) to 'test.zip' use adm-zip, then unzip 'test.zip' on window. There is a error, the file is broke. Normal is OK, but some...