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) zip_fdopen(3)
2324
find files
25zip_name_locate(3)
2627
read files
28zip_fopen(3) zip_fopen_encrypted(3) zip_fopen_index(3)
29zip_fopen_index_encrypted(3) zip_fread(3) zip_fclose(3)
3031
close archive
32zip_close(3)
3334
miscellaneous
35zip_stat(3) zip_get_archive_comment(3) zip_get_archive_flag(3)
36zip_get_file_comment(3) zip_get_name(3) zip_get_num_entries(3)
37zip_set_default_password(3)
38
CREATING/MODIFYING ZIP ARCHIVES
40create/open archive
41zip_open(3)
4243
add/change files and directories
44zip_add(3) zip_add_dir(3) zip_replace(3) zip_set_file_comment(3)
45zip_source_buffer(3) zip_source_file(3) zip_source_filep(3)
46zip_source_function(3) zip_source_zip(3) zip_source_free(3)
4748
rename files
49zip_rename(3)
5051
delete files
52zip_delete(3)
5354
revert changes
55zip_unchange(3) zip_unchange_all(3) zip_unchange_archive(3)
5657
close archive
58zip_close(3)
5960
miscellaneous
61zip_set_archive_comment(3) zip_set_archive_flag(3)
62
ERROR HANDLING
64zip_error_to_str(3) zip_strerror(3) zip_file_strerror(3)
65zip_error_get(3) zip_error_get_sys_type(3) zip_errors(3)
66
AUTHORS
68Dieter Baron <dillo@giga.or.at> and Thomas Klausner <tk@giga.or.at>
6970
71
72
NiH February 14, 2011 LIBZIP(3)