Back to Chromium

NAME

third_party/libzip/src/man/libzip.html

150.0.7855.15.0 KB
Original Source

| LIBZIP(3) | Library Functions Manual | LIBZIP(3) |

NAME

libzip — library for manipulating zip archives

LIBRARY

libzip (-lzip)

SYNOPSIS

#include <zip.h>

DESCRIPTION

libzip is a library for reading, creating, and modifying zip archives.

The main design criteria for libzip were:

  • Do not create corrupt files, even in case of errors.
  • Do not delete data.
  • Be efficient.

For this reason, when modifying zip archives, libzip writes to a temporary file and replaces the original zip archive atomically.

Below there are two sections listing functions: one for how to read from zip archives and one for how to create/modify them.

READING ZIP ARCHIVES

open archive

find files

read files

close archive

miscellaneous

CREATING/MODIFYING ZIP ARCHIVES

create/open archive

add/change files and directories

rename files

delete files

revert changes

read/modify extra fields

close archive (writing)

miscellaneous (writing)

ERROR HANDLING

AUTHORS

Dieter Baron <[email protected]> and Thomas Klausner <[email protected]>

| April 17, 2020 | NiH |