1LIBZIP(3)                  Library Functions Manual                  LIBZIP(3)
2
3
4

NAME

6       libzip - library for manipulating zip archives
7

LIBRARY

9       libzip (-lzip)
10

SYNOPSIS

12       #include <zip.h>
13

DESCRIPTION

15       libzip is a library for reading, creating, and modifying zip archives.
16
17       Below  there  are  two  sections listing functions: one for how to read
18       from zip archives and one for how to create/modify them.
19

READING ZIP ARCHIVES

21   open archive
22       zip_open(3) zip_fdopen(3)
23
24   find files
25       zip_name_locate(3)
26
27   read files
28       zip_fopen(3)         zip_fopen_encrypted(3)          zip_fopen_index(3)
29       zip_fopen_index_encrypted(3) zip_fread(3) zip_fclose(3)
30
31   close archive
32       zip_close(3)
33
34   miscellaneous
35       zip_stat(3)      zip_get_archive_comment(3)     zip_get_archive_flag(3)
36       zip_get_file_comment(3)     zip_get_name(3)      zip_get_num_entries(3)
37       zip_set_default_password(3)
38

CREATING/MODIFYING ZIP ARCHIVES

40   create/open archive
41       zip_open(3)
42
43   add/change files and directories
44       zip_add(3)    zip_add_dir(3)   zip_replace(3)   zip_set_file_comment(3)
45       zip_source_buffer(3)       zip_source_file(3)       zip_source_filep(3)
46       zip_source_function(3) zip_source_zip(3) zip_source_free(3)
47
48   rename files
49       zip_rename(3)
50
51   delete files
52       zip_delete(3)
53
54   revert changes
55       zip_unchange(3) zip_unchange_all(3) zip_unchange_archive(3)
56
57   close archive
58       zip_close(3)
59
60   miscellaneous
61       zip_set_archive_comment(3) zip_set_archive_flag(3)
62

ERROR HANDLING

64       zip_error_to_str(3)         zip_strerror(3)        zip_file_strerror(3)
65       zip_error_get(3) zip_error_get_sys_type(3) zip_errors(3)
66

AUTHORS

68       Dieter Baron <dillo@giga.or.at> and Thomas Klausner <tk@giga.or.at>
69
70
71
72NiH                            February 14, 2011                     LIBZIP(3)
Impressum