forked from nih-at/libzip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libzip.mdoc
237 lines (237 loc) · 4.86 KB
/
libzip.mdoc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
.\" libzip.mdoc -- general overview of available functions
.\" Copyright (C) 2005-2018 Dieter Baron and Thomas Klausner
.\"
.\" This file is part of libzip, a library to manipulate ZIP archives.
.\" The authors can be contacted at <libzip@nih.at>
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in
.\" the documentation and/or other materials provided with the
.\" distribution.
.\" 3. The names of the authors may not be used to endorse or promote
.\" products derived from this software without specific prior
.\" written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
.\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
.\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
.\" GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
.\" IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
.\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd September 29, 2018
.Dt LIBZIP 3
.Os
.Sh NAME
.Nm libzip
.Nd library for manipulating zip archives
.Sh LIBRARY
libzip (-lzip)
.Sh SYNOPSIS
.In zip.h
.Sh DESCRIPTION
.Nm
is a library for reading, creating, and modifying zip archives.
.Pp
The main design criteria for
.Nm
were:
.Bl -bullet -compact
.It
Do not create corrupt files, even in case of errors.
.It
Do not delete data.
.It
Be efficient.
.El
.Pp
For this reason, when modifying zip archives,
.Nm
writes to a temporary file and replaces the original
zip archive atomically.
.Pp
Below there are two sections listing functions: one for how to read
from zip archives and one for how to create/modify them.
.Sh READING ZIP ARCHIVES
.Ss open archive
.Bl -bullet -compact
.It
.Xr zip_open 3
.It
.Xr zip_fdopen 3
.El
.Ss find files
.Bl -bullet -compact
.It
.Xr zip_name_locate 3
.El
.Ss read files
.Bl -bullet -compact
.It
.Xr zip_fopen 3
.It
.Xr zip_fopen_encrypted 3
.It
.Xr zip_fopen_index 3
.It
.Xr zip_fopen_index_encrypted 3
.It
.Xr zip_fread 3
.It
.Xr zip_fseek 3
(uncompressed files only)
.It
.Xr zip_ftell 3
(uncompressed files only)
.It
.Xr zip_fclose 3
.El
.Ss close archive
.Bl -bullet -compact
.It
.Xr zip_close 3
.El
.Ss miscellaneous
.Bl -bullet -compact
.It
.Xr zip_stat 3
.It
.Xr zip_file_get_comment 3
.It
.Xr zip_file_get_external_attributes 3
.It
.Xr zip_get_archive_comment 3
.It
.Xr zip_get_archive_flag 3
.It
.Xr zip_get_name 3
.It
.Xr zip_get_num_entries 3
.It
.Xr zip_set_default_password 3
.El
.Sh CREATING/MODIFYING ZIP ARCHIVES
.Ss create/open archive
.Bl -bullet -compact
.It
.Xr zip_open 3
.El
.Ss add/change files and directories
.Bl -bullet -compact
.It
.Xr zip_dir_add 3
.It
.Xr zip_file_add 3
.It
.Xr zip_file_replace 3
.It
.Xr zip_file_set_comment 3
.It
.Xr zip_file_set_external_attributes 3
.It
.Xr zip_file_set_encryption 3
.It
.Xr zip_file_set_mtime 3
.It
.Xr zip_set_file_compression 3
.It
.Xr zip_source_buffer 3
.It
.Xr zip_source_file 3
.It
.Xr zip_source_filep 3
.It
.Xr zip_source_free 3
.It
.Xr zip_source_function 3
.It
.Xr zip_source_zip 3
.El
.Ss rename files
.Bl -bullet -compact
.It
.Xr zip_rename 3
.El
.Ss delete files
.Bl -bullet -compact
.It
.Xr zip_delete 3
.El
.Ss revert changes
.Bl -bullet -compact
.It
.Xr zip_unchange 3
.It
.Xr zip_unchange_all 3
.It
.Xr zip_unchange_archive 3
.El
.Ss read/modify extra fields
.Bl -bullet -compact
.It
.Xr zip_file_extra_field_by_id 3
.It
.Xr zip_file_extra_field_delete 3
.It
.Xr zip_file_extra_field_delete_by_id 3
.It
.Xr zip_file_extra_field_get 3
.It
.Xr zip_file_extra_field_set 3
.It
.Xr zip_file_extra_fields_count 3
.It
.Xr zip_file_extra_fields_count_by_id 3
.El
.Ss close archive (writing)
.Bl -bullet -compact
.It
.Xr zip_close 3
.It
.Xr zip_discard 3
.El
.Ss miscellaneous (writing)
.Bl -bullet -compact
.It
.Xr zip_libzip_version 3
.It
.Xr zip_register_progress_callback_with_state 3
.It
.Xr zip_set_archive_comment 3
.It
.Xr zip_set_archive_flag 3
.It
.Xr zip_source 3
.El
.Sh ERROR HANDLING
.Bl -bullet -compact
.It
.Xr zip_error_strerror 3
.It
.Xr zip_strerror 3
.It
.Xr zip_file_strerror 3
.It
.Xr zip_get_error 3
.It
.Xr zip_error_init_with_code 3
.It
.Xr zip_error_system_type 3
.It
.Xr zip_errors 3
.El
.Sh AUTHORS
.An -nosplit
.An Dieter Baron Aq Mt dillo@nih.at
and
.An Thomas Klausner Aq Mt tk@giga.or.at