1LIBZIP(3) Library Functions Manual LIBZIP(3)
23
4
NAME
6libzip - library for manipulating zip archives
7
LIBRARY
9libzip (-lzip)
10
SYNOPSIS
12#include <zip.h>
13
DESCRIPTION
15libzip is a library for reading, creating, and modifying zip archives.
1617
Below there are two sections listing functions: one for how to read
18from zip archives and one for how to create/modify them.
19
READING ZIP ARCHIVES
21open archive
22zip_open(3)
2324
find files
25zip_name_locate(3)
2627
read files
28zip_fopen(3) zip_fopen_index(3) zip_fread(3) zip_fclose(3)
2930
close archive
31zip_close(3)
3233
miscellaneous
34zip_stat(3) zip_get_archive_comment(3) zip_get_archive_flag(3)
35zip_get_file_comment(3) zip_get_name(3) zip_get_num_files(3)
36
CREATING/MODIFYING ZIP ARCHIVES
38create/open archive
39zip_open(3)
4041
add/change files and directories
42zip_add(3) zip_add_dir(3) zip_replace(3) zip_set_file_comment(3)
43zip_source_buffer(3) zip_source_file(3) zip_source_filep(3)
44zip_source_function(3) zip_source_zip(3) zip_source_free(3)
4546
rename files
47zip_rename(3)
4849
delete files
50zip_delete(3)
5152
revert changes
53zip_unchange(3) zip_unchange_all(3) zip_unchange_archive(3)
5455
close archive
56zip_close(3)
5758
miscellaneous
59zip_set_archive_comment(3) zip_set_archive_flag(3)
60
ERROR HANDLING
62zip_error_to_str(3) zip_strerror(3) zip_file_strerror(3)
63zip_error_get(3) zip_error_get_sys_type(3) zip_errors(3)
64
AUTHORS
66Dieter Baron <dillo@giga.or.at> and Thomas Klausner <tk@giga.or.at>
6768
69
70
NiH June 11, 2008 LIBZIP(3)