Quentin Quadrat

Results 151 comments of Quentin Quadrat

Hi ! It should not! If possible, can you give me your basic example for deeper investigation? Thanks

I'll investigate. The problem is that this API is based on an out of date Minizip version which has evolved so much that I cannot easily update it.

@Mylifeismyhome I read in minizip.h: `There is no delete function into a zipfile. If you want delete file into a zipfile, you must open a zipfile, and create another. Of...

Overwriting files inside the zip is not managed. Buts flags `overwrite, append` to pass in the add() methods are in fact private flags to overwriting the zip archive.

@Tabstone For now as far as I understand this not possible. I guess you achieve it only by unzipping and zipping back. Better would contact original authors directly @sebastiandev @fbergmann...

I know this will not be easy: but this code can help (untested') ``` Unzipper unzipper("zipfile.zip"); unzipper.extract("myFolder"); remove("unwanted file"); Aipper zipper("zipfile.zip"); zipper.add("myFolder"); ``` We could improve API by adding such...

Close since in v2.x.y these flags are used for replacing or appending the zip file and replacing elements in zip is not possible.

@Togtja Is this still in draft ? Do you want to be merged in dev branch ?

Closing since I'm currently working on it. See https://github.com/sebastiandev/zipper/issues/88

Hi! I'm currently on holidays your code seems ok on a Mac OS X (not my personal desktop) on the master branch, and on my side I succeeded to zip...