adm-zip icon indicating copy to clipboard operation
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

Results 141 adm-zip issues
Sort by recently updated
recently updated
newest added

I use it to read a big zip file(2.6GB),it prompts an error:File size (2689810164) is greater than 2 GB vision:^0.5.9 code: try { const zip = new admZip(`${cases}/${params.name}.zip`) let cacheObj:...

I'm writing a file to zip on upload: ```ts /** * @method compressAndHash * @description Returns an object that has the compressed file in a buffer, and the representing md5...

enhancement

"adm-zip": "^0.5.9" internal/buffer.js:72 throw new ERR_OUT_OF_RANGE(type || 'offset', ^ RangeError [ERR_OUT_OF_RANGE]: The value of "offset" is out of range. It must be >= 0 and

Hi, how are you ? I want to zip those files, It do the compress, but when I want to open the zip file, this has 0 bytes !!! var...

I've got a zip file created from https://makeappicon.com. It consists of three subdirectories each containing some image files and folders. ![Screenshot 2022-02-24 at 11 54 11](https://user-images.githubusercontent.com/2853772/155519219-fb5b8ebd-3b72-40b2-b09a-4b19c875531c.png) When opening this .zip...

The wiki description of [extractEntryTo](https://github.com/cthackers/adm-zip/wiki/ADM-ZIP#void-extractentrytoobject-entry-string-targetpath-boolean-maintainentrypath--true-boolean-overwrite--false-string-outfilename) is out of date. According to the [latest version](https://github.com/cthackers/adm-zip/blob/bebbabf600a6ae5d64ee31cbc89a1274bd1d8c1f/adm-zip.js#L495-L510) of `adm-zip.js`, the parameter `keepOriginalPermissio = false` should be included.

### First of all, thank you for your contribution to this great project! ```ts const admZip = new AdmZip() await admZip.addLocalFolderPromise(path.resolve(__dirname, 'asd'), {}) await admZip.writeZipPromise(path.resolve(__dirname, '4.zip')) console.log('contentHash1', getContentHash(await admZip.toBufferPromise())) //...

Same as #213, reporting again because it's not fixed in 0.4.11 (latest version to date). Getting this warning: ``` WARNING in ./node_modules/adm-zip/util/fileSystem.js Module not found: Error: Can't resolve 'original-fs' in...

I noticed a reference to a constant that doesn't exist. I looked through the rest of the constants and didn't see any others that were spelled wrong. Hopefully this fixes...

Similar to [another issue](https://github.com/cthackers/adm-zip/issues/253), filenames with Unicode characters are unusable: 7-zip can neither read nor extract them. For example: `Tal/A L'infini/Le Passé.txt` -> `Tal/A L'infini/Le Pass├⌐.tx` `Snøfall.txt` -> `Sn├╕fall.tx`

unicode