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 169 adm-zip issues
Sort by recently updated
recently updated
newest added

My zip file was compressed on the mac os,thus my filen name inclueds '|' charactor, when uncompressed it on the windows os,my js will be crash. ![img_v2_b71db3ea-43a5-4dfc-9128-9cba491d541g](https://github.com/cthackers/adm-zip/assets/50355521/a8a6533e-6ce5-47fe-a017-bdbf0a440d1c) I checked the...

❌ bug

How to compress a directory? I have one directory with three files, I would like compress directory.

I need to ensure that the extractAllTo method is completed before continuing to perform other program. Example: ``` const appPathTemp = join(moduleUpdatePath, DIST_MAP[moduleCode]) const zip = new AdmZip(filePath) await zip.extractAllTo(appPathTemp)...

I'm getting an error: ``` Exiting with error Error: ENOENT: no such file or directory, stat '/tmp/kabuki/kabuki-core/dlls/libd3dcompiler.def' at Object.statSync (fs.js:1132:3) at /var/task/node_modules/adm-zip/util/utils.js:158:25 at Array.forEach () at findSync (/var/task/node_modules/adm-zip/util/utils.js:155:34) at /var/task/node_modules/adm-zip/util/utils.js:158:89...

when pack a folder with SymbolicLink file, it lost symbolic link.

💡 feature request
wip

AdmZip.getEntries() about large file is invalid

`adm-zip` version: `0.5.10` `node.js` version: `16.17.0` Linux Mint Example from `Next.js` app ```ts // ... const zip = new AdmZip() // `file` is of type Buffer zip.addFile('файл.jpg', file) const buff...

Dear maintainers of the repository, My name is Eyal and my team at JFrog is maintaining [Frogbot](https://github.com/jfrog/frogbot), [JFrog VS Code Extension](https://marketplace.visualstudio.com/items?itemName=JFrog.jfrog-vscode-extension) and few more open source projects used by our...

Commit based on #449. A separate PR is used to facilitate review. This allows to read and write files with bit 11 (EFS) = 0 in any zip, with Buffer....

I am adding files to a zip and their filename is the product name. Some of these product names contain '/' for example: 1025/1038 - Developer This creates a directory...