zip icon indicating copy to clipboard operation
zip copied to clipboard

A portable, simple zip library written in C

Results 10 zip issues
Sort by recently updated
recently updated
newest added

Fixes https://github.com/kuba--/zip/issues/272

Fixes https://github.com/kuba--/zip/issues/272

If we build a library: 1. ```cmake -G "MinGW Makefiles" -B build``` 2. ```mingw32-make``` Work! But if we build: 1. ```cmake -G "MinGW Makefiles" -B build -DCMAKE_BUILD_TYPE=Release``` 2. ```mingw32-make``` It...

Hello Not sure if it's an issue or a request, but when working in environments where the original `libzip` is also available, there's no clear way to switch between libzip...

question
under discussion

Hello! I trying to write file to zip with cyrillic symbols ```c zip_entry_open(zip, "тест.txt"); zip_entry_write(zip, content, size); zip_entry_close(zip); ``` Archive is empty..

The function `zip_open("somefile.zip", 0, 'r');` fails if `somefile.zip` is read-only. To test this, just add a call to `chmod(ZIPNAME, S_IRUSR);` (needs `sys/stat.h` included) to the end of `test_setup()` in `test/test_read.c`....

This required making some updates that are kind of hacky. The path of least edits to miniz necessitated updating miniz mz_zip_reader_init_mem to initialize the writer function and additionally zip_stream_open to...

Responding to https://github.com/kuba--/zip/pull/367#discussion_r1958774563 This PR adds a compiler definition specific to OSSFUZZ builds and bails prior to attempting to malloc beyond 1 gigabyte while fuzzing

Thanks for this great project btw, I forgot to say in my last communication! In my case, my targets may not have all the common I/O api's (such as symlink)....

question

Is it possibile to add password support for reading files? "zip_set_default_password"

enhancement
help wanted
question