Delete file from zip archive
libzip (-lzip)
#include <zip.h>
int
zip_delete(struct zip *archive, zip_uint64_t index);
The file at position index in the zip archive archive is marked as deleted.
Upon successful completion 0 is returned. Otherwise, -1 is returned and the error code in archive is set to indicate the error.
zip_delete() fails if:
[ZIP_ER_INVAL]
index is not a valid file index in archive.
Dieter Baron <[email protected]> and Thomas Klausner <[email protected]>