aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/doc/src/zip.xml
blob: 4500995c34a44d40356a9fc61ca50d3c79084afc (plain) (blame)
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>2006</year><year>2013</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
      You may obtain a copy of the License at
 
          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      See the License for the specific language governing permissions and
      limitations under the License.

    </legalnotice>

    <title>zip</title>
    <prepared>Jakob Cederlund</prepared>
    <responsible>Jakob Cederlund</responsible>
    <docno>1</docno>
    <approved></approved>
    <checked></checked>
    <date>05-11-02</date>
    <rev>PA1</rev>
    <file>zip.sgml</file>
  </header>
  <module>zip</module>
  <modulesummary>Utility for reading and creating 'zip' archives.</modulesummary>
  <description>
    <p>The <c>zip</c> module archives and extracts files to and from a zip
      archive. The zip format is specified by the "ZIP Appnote.txt" file
      available on PKWare's website www.pkware.com.</p>
    <p>The zip module supports zip archive versions up to 6.1. However,
      password-protection and Zip64 are not supported.</p>
    <p>By convention, the name of a zip file should end in "<c>.zip</c>".
      To abide to the convention, you'll need to add "<c>.zip</c>" yourself
      to the name.</p>
    <p>Zip archives are created with the
      <seealso marker="#zip_2">zip/2</seealso> or the
      <seealso marker="#zip_2">zip/3</seealso> function. (They are
      also available as <c>create</c>, to resemble the <c>erl_tar</c>
      module.)</p>
    <p>To extract files from a zip archive, use the
      <seealso marker="#unzip_1">unzip/1</seealso> or the
      <seealso marker="#unzip_2">unzip/2</seealso> function. (They are
      also available as <c>extract</c>.)</p>
    <p>To fold a function over all files in a zip archive, use the
      <seealso marker="#foldl_3">foldl_3</seealso> function.</p>
    <p>To return a list of the files in a zip archive, use the
      <seealso marker="#list_dir_1">list_dir/1</seealso> or the
      <seealso marker="#list_dir_2">list_dir/2</seealso> function. (They
      are also available as <c>table</c>.)</p>
    <p>To print a list of files to the Erlang shell,
      use either the <seealso marker="#t_1">t/1</seealso> or
      <seealso marker="#tt_1">tt/1</seealso> function.</p>
    <p>In some cases, it is desirable to open a zip archive, and to
      unzip files from it file by file, without having to reopen the
      archive. The functions
      <seealso marker="#zip_open">zip_open</seealso>,
      <seealso marker="#zip_get">zip_get</seealso>,
      <seealso marker="#zip_list_dir">zip_list_dir</seealso> and
      <seealso marker="#zip_close">zip_close</seealso> do this.</p>
  </description>

  <section>
    <title>LIMITATIONS</title>
    <p>Zip64 archives are not currently supported.</p>
    <p>Password-protected and encrypted archives are not currently
      supported</p>
    <p>Only the DEFLATE (zlib-compression) and the STORE (uncompressed
      data) zip methods are supported.</p>
    <p>The size of the archive is limited to 2 G-byte (32 bits).</p>
    <p>Comments for individual files is not supported when creating zip
      archives. The zip archive comment for the whole zip archive is
      supported.</p>
    <p>There is currently no support for altering an existing zip archive.
      To add or remove a file from an archive, the whole archive must be
      recreated.</p>
  </section>

  <datatypes>
    <datatype>
      <name name="zip_comment"/>
      <desc>
        <p>The record <c>zip_comment</c> just contains the archive comment for
          a zip archive</p>
      </desc>
    </datatype>
    <datatype>
      <name name="zip_file"/>
      <desc>
        <p>The record <c>zip_file</c> contains the following fields.</p>
        <taglist>
          <tag><c>name</c></tag>
          <item>
            <p>the name of the file</p>
          </item>
          <tag><c>info</c></tag>
          <item>
            <p>file info as in
              <seealso marker="kernel:file#read_file_info/1">file:read_file_info/1</seealso></p>
          </item>
          <tag><c>comment</c></tag>
          <item>
            <p>the comment for the file in the zip archive</p>
          </item>
          <tag><c>offset</c></tag>
          <item>
            <p>the offset of the file in the zip archive (used internally)</p>
          </item>
          <tag><c>comp_size</c></tag>
          <item>
            <p>the compressed size of the file (the uncompressed size is found
              in <c>info</c>)</p>
          </item>
        </taglist>
      </desc>
    </datatype>
    <datatype>
      <name name="filename"/>
      <p>The name of a zip file.</p>
    </datatype>
    <datatype><name name="extension"/></datatype>
    <datatype><name name="extension_spec"/></datatype>
    <datatype>
      <name name="create_option"/>
      <desc>
        <p>These options are described in <seealso marker="#zip_options">create/3</seealso>.</p>
      </desc>
    </datatype>
    <datatype>
      <name name="handle"/>                                                                          
      <desc>
        <p>As returned by <seealso marker="#zip_open/2">zip_open/2</seealso>.</p>                     
      </desc>                                                        
    </datatype>
  </datatypes>
  <funcs>
    <func>
      <name name="zip" arity="2"/>
      <name name="zip" arity="3"/>
      <name name="create" arity="2"/>
      <name name="create" arity="3"/>
      <fsummary>Create a zip archive with options</fsummary>
      <desc>
        <p>The <marker id="zip_2"></marker><c>zip</c> function creates a
          zip archive containing the files specified in <c><anno>FileList</anno></c>.</p>
        <p>As synonyms, the functions <c>create/2</c> and <c>create/3</c>
          are provided, to make it resemble the <c>erl_tar</c> module.</p>
        <p>The file-list is a list of files, with paths relative to the
          current directory, they will be stored with this path in the
          archive. Files may also be specified with data in binaries,
          to create an archive directly from data.</p>
        <p>Files will be compressed using the DEFLATE compression, as
          described in the Appnote.txt file. However, files will be
          stored without compression if they already are compressed.
          The <c>zip/2</c> and <c>zip/3</c> functions check the file extension
          to see whether the file should be stored without compression.
          Files with the following extensions are not compressed:
          <c>.Z</c>, <c>.zip</c>, <c>.zoo</c>, <c>.arc</c>, <c>.lzh</c>,
          <c>.arj</c>.</p>
        <p>It is possible to override the default behavior and
        explicitly control what types of files that should be
        compressed by using the <c>{compress, <anno>What</anno>}</c> and
        <c>{uncompress, <anno>What</anno>}</c> options. It is possible to have
        several <c>compress</c> and <c>uncompress</c> options. In
        order to trigger compression of a file, its extension must
        match with the
        <c>compress</c> condition and must not match the
        <c>uncompress</c> condition. For example if <c>compress</c> is
        set to <c>["gif", "jpg"]</c> and <c>uncompress</c> is set to
        <c>["jpg"]</c>, only files with <c>"gif"</c> as extension will
        be compressed. No other files will be compressed.</p>
	<marker id="zip_options"></marker>
        <p>The following options are available:</p>
        <taglist>
          <tag><c>cooked</c></tag>
          <item>
            <p>By default, the <c>open/2</c> function will open the
              zip file in <c>raw</c> mode, which is faster but does not allow
              a remote (erlang) file server to be used. Adding <c>cooked</c>
              to the mode list will override the default and open the zip file
              without the <c>raw</c> option. The same goes for the files
              added.</p>
          </item>
          <tag><c>verbose</c></tag>
          <item>
            <p>Print an informational message about each file
              being added.</p>
          </item>
          <tag><c>memory</c></tag>
          <item>
            <p>The output will not be to a file, but instead as a tuple
              <c>{<anno>FileName</anno>, binary()}</c>. The binary will be a full zip
              archive with header, and can be extracted with for instance
              <c>unzip/2</c>.</p>
          </item>
          <tag><c>{comment, <anno>Comment</anno>}</c></tag>
          <item>
            <p>Add a comment to the zip-archive.</p>
          </item>
          <tag><c>{cwd, <anno>CWD</anno>}</c></tag>
          <item>
            <p>Use the given directory as current directory, it will be
              prepended to file names when adding them, although it will not
              be in the zip-archive. (Acting like a file:set_cwd/1, but
              without changing the global cwd property.)</p>
          </item>
          <tag><c>{compress, <anno>What</anno>}</c></tag>
          <item>
            <p>Controls what types of files will be
            compressed. It is by default set to <c>all</c>. The
            following values of <c>What</c> are allowed:</p>
	      <taglist>
	            <tag><c>all</c></tag>
		    <item><p> means that all files will be compressed (as long
		       as they pass the <c>uncompress</c> condition).</p></item>
		    <tag><c>[<anno>Extension</anno>]</c></tag>
		    <item><p>means that only files with exactly these extensions
		     will be compressed.</p></item>
	            <tag><c>{add,[<anno>Extension</anno>]}</c></tag>
		    <item><p>adds these extensions to the list of compress
		     extensions.</p></item>
	            <tag><c>{del,[<anno>Extension</anno>]}</c></tag>
		    <item><p>deletes these extensions from the list of compress
		     extensions.</p></item>
	      </taglist>
	  </item>
          <tag><c>{uncompress, <anno>What</anno>}</c></tag>
          <item>
            <p>Controls what types of files will be uncompressed. It is by
            default set to <c>[".Z", ".zip", ".zoo", ".arc", ".lzh", ".arj"]</c>.
	    The following values of <c>What</c> are allowed:</p>
	      <taglist>
	            <tag><c>all</c></tag>
		    <item><p> means that no files will be compressed.</p></item>
		    <tag><c>[<anno>Extension</anno>]</c></tag>
		    <item><p>means that files with these extensions will be
		    uncompressed.</p></item>
	            <tag><c>{add,[<anno>Extension</anno>]}</c></tag>
		    <item><p>adds these extensions to the list of uncompress
		     extensions.</p></item>
	            <tag><c>{del,[<anno>Extension</anno>]}</c></tag>
		    <item><p>deletes these extensions from the list of uncompress
		     extensions.</p></item>
	      </taglist>
	  </item>
        </taglist>
      </desc>
    </func>
    <func>
      <name name="unzip" arity="1"/>
      <name name="unzip" arity="2"/>
      <name name="extract" arity="1"/>
      <name name="extract" arity="2"/>
      <fsummary>Extract files from a zip archive</fsummary>
      <desc>
        <p>The <marker id="unzip_1"></marker><c>unzip/1</c> function extracts
          all files from a zip archive.
          The <marker id="unzip_2"></marker><c>unzip/2</c> function provides
           options to extract some files, and more.</p>
        <p>If the <c><anno>Archive</anno></c> argument is given as a binary,
          the contents of the binary is assumed to be a zip archive,
          otherwise it should be a filename.</p>
        <p>The following options are available:</p>
        <taglist>
          <tag><c>{file_list, <anno>FileList</anno>}</c></tag>
          <item>
            <p>By default, all files will be extracted from the zip
              archive. With the <c>{file_list, <anno>FileList</anno>}</c> option,
              the <c>unzip/2</c> function will only extract the files
              whose names are included in <c><anno>FileList</anno></c>. The full
              paths, including the names of all sub directories within
              the zip archive, must be specified.</p>
          </item>
          <tag><c>cooked</c></tag>
          <item>
            <p>By default, the <c>open/2</c> function will open the
              zip file in <c>raw</c> mode, which is faster but does not allow
              a remote (erlang) file server to be used. Adding <c>cooked</c>
              to the mode list will override the default and open the zip file
              without the <c>raw</c> option. The same goes for the files
              extracted.</p>
          </item>
          <tag><c>keep_old_files</c></tag>
          <item>
            <p>By default, all existing files with the same name as file in
              the zip archive will be overwritten. With the <c>keep_old_files</c>
              option, the <c>unzip/2</c> function will not overwrite any existing
              files. Note that even with the <c>memory</c> option given, which
              means that no files will be overwritten, files existing will be
              excluded from the result.</p>
          </item>
          <tag><c>verbose</c></tag>
          <item>
            <p>Print an informational message as each file is being
              extracted.</p>
          </item>
          <tag><c>memory</c></tag>
          <item>
            <p>Instead of extracting to the current directory, the
              <c>memory</c> option will give the result as a list of tuples
              <c>{Filename, Binary}</c>, where <c>Binary</c> is a binary
              containing the extracted data of the file named <c>Filename</c>
              in the zip archive.</p>
          </item>
          <tag><c>{cwd, CWD}</c></tag>
          <item>
            <p>Use the given directory as current directory, it will be
              prepended to file names when extracting them from the
              zip-archive. (Acting like a file:set_cwd/1, but without
              changing the global cwd property.)</p>
          </item>
        </taglist>
      </desc>
    </func>
    <func>
      <name name="foldl" arity="3"/>
      <fsummary>Fold a function over all files in a zip archive</fsummary>
      <desc>
        <p>The <marker id="foldl_3"></marker> <c>foldl/3</c> function
        calls <c><anno>Fun</anno>(<anno>FileInArchive</anno>, <anno>GetInfo
        </anno>, <anno>GetBin</anno>, <anno>AccIn</anno>)</c> on
        successive files in the <c>Archive</c>, starting with
        <c><anno>AccIn</anno>
        == <anno>Acc0</anno></c>. <c><anno>FileInArchive</anno></c> is
        the name that the file
        has in the archive. <c><anno>GetInfo</anno></c> is a fun that
        returns info
        about the the file. <c><anno>GetBin</anno></c> returns the contents
        of the
        file. Both <c><anno>GetInfo</anno></c> and <c><anno>GetBin</anno></c>
        must be called
        within the <c><anno>Fun</anno></c>. Their behavior is undefined if
        they are
        called outside the context of the <c><anno>Fun</anno></c>.
        The <c><anno>Fun</anno></c>
        must return a new accumulator which is passed to the next
        call. <c>foldl/3</c> returns the final value of the
        accumulator. <c><anno>Acc0</anno></c> is returned if the archive is
        empty. It is not necessary to iterate over all files in the
        archive. The iteration may be ended prematurely in a
        controlled manner by throwing an exception.</p>

	<p>For example:</p>
        <pre>
&gt; <input>Name = "dummy.zip".</input>
"dummy.zip"
&gt; <input>{ok, {Name, Bin}} = zip:create(Name, [{"foo", &lt;&lt;"FOO"&gt;&gt;}, {"bar", &lt;&lt;"BAR"&gt;&gt;}], [memory]).</input>
{ok,{"dummy.zip",
     &lt;&lt;80,75,3,4,20,0,0,0,0,0,74,152,97,60,171,39,212,26,3,0,
       0,0,3,0,0,...&gt;&gt;}}
&gt; <input>{ok, FileSpec} = zip:foldl(fun(N, I, B, Acc) -> [{N, B(), I()} | Acc] end, [], {Name, Bin}).</input>
{ok,[{"bar",&lt;&lt;"BAR"&gt;&gt;,
      {file_info,3,regular,read_write,
                 {{2010,3,1},{19,2,10}},
                 {{2010,3,1},{19,2,10}},
                 {{2010,3,1},{19,2,10}},
                 54,1,0,0,0,0,0}},
     {"foo",&lt;&lt;"FOO"&gt;&gt;,
      {file_info,3,regular,read_write,
                 {{2010,3,1},{19,2,10}},
                 {{2010,3,1},{19,2,10}},
                 {{2010,3,1},{19,2,10}},
                 54,1,0,0,0,0,0}}]}
&gt; <input>{ok, {Name, Bin}} = zip:create(Name, lists:reverse(FileSpec), [memory]).</input>
{ok,{"dummy.zip",
     &lt;&lt;80,75,3,4,20,0,0,0,0,0,74,152,97,60,171,39,212,26,3,0,
       0,0,3,0,0,...&gt;&gt;}}
&gt; <input>catch zip:foldl(fun("foo", _, B, _) -> throw(B()); (_,_,_,Acc) -> Acc end, [], {Name, Bin}). </input>
&lt;&lt;"FOO"&gt;&gt;
</pre>
      </desc>
    </func>
    <func>
      <name name="list_dir" arity="1"/>
      <name name="list_dir" arity="2"/>
      <name name="table" arity="1" />
      <name name="table" arity="2"/>
      <fsummary>Retrieve the name of all files in a zip archive</fsummary>
      <desc>
        <p>The <marker id="list_dir_1"></marker><c>list_dir/1</c>
          function retrieves the names of all files in the zip archive
          <c><anno>Archive</anno></c>. The <marker id="list_dir_2"></marker>
          <c>list_dir/2</c> function provides options.</p>
        <p>As synonyms, the functions <c>table/2</c> and <c>table/3</c>
          are provided, to make it resemble the <c>erl_tar</c> module.</p>
        <p>The result value is the tuple <c>{ok, List}</c>, where <c>List</c>
          contains the zip archive comment as the first element.</p>
        <p>The following options are available:</p>
        <taglist>
          <tag><c>cooked</c></tag>
          <item>
            <p>By default, the <c>open/2</c> function will open the
              zip file in <c>raw</c> mode, which is faster but does not allow
              a remote (erlang) file server to be used. Adding <c>cooked</c>
              to the mode list will override the default and open the zip file
              without the <c>raw</c> option.</p>
          </item>
        </taglist>
      </desc>
    </func>
    <func>
      <name name="t" arity="1"/>
      <fsummary>Print the name of each file in a zip archive</fsummary>
      <desc>
        <p>The <marker id="t_1"></marker><c>t/1</c> function prints the names
          of all files in the zip archive <c><anno>Archive</anno></c> to the Erlang shell.
          (Similar to "<c>tar&nbsp;t</c>".)</p>
      </desc>
    </func>
    <func>
      <name name="tt" arity="1"/>
      <fsummary>Print name and information for each file in a zip archive</fsummary>
      <desc>
        <p>The <marker id="tt_1"></marker><c>tt/1</c> function prints names and
          information about all files in the zip archive <c><anno>Archive</anno></c> to
          the Erlang shell. (Similar to "<c>tar tv</c>".)</p>
      </desc>
    </func>
    <func>
      <name name="zip_open" arity="1"/>
      <name name="zip_open" arity="2"/>
      <fsummary>Open an archive and return a handle to it</fsummary>
      <desc>
        <p>The <marker id="zip_open"></marker><c>zip_open</c> function
          opens a
          zip archive, and reads and saves its directory. This
          means that subsequently reading files from the archive will be
          faster than unzipping files one at a time with <c>unzip</c>.</p>
        <p>The archive must be closed with <c>zip_close/1</c>.</p>
        <p>The <c><anno>ZipHandle</anno></c> will be closed if the
          process which originally opened the archive dies.</p>
      </desc>
    </func>
    <func>
      <name name="zip_list_dir" arity="1"/>
      <fsummary>Return a table of files in open zip archive</fsummary>
      <desc>
        <p>The <marker id="zip_list_dir"></marker>
          <c>zip_list_dir/1</c> function
          returns the file list of an open zip archive. The first returned
          element is the zip archive comment.</p>
      </desc>
    </func>
    <func>
      <name name="zip_get" arity="1"/>
      <name name="zip_get" arity="2"/>
      <fsummary>Extract files from an open archive</fsummary>
      <desc>
        <p>The <marker id="zip_get"></marker><c>zip_get</c> function extracts
          one or all files from an open archive.</p>
        <p>The files will be unzipped to memory or to file, depending on
          the options given to the <c>zip_open</c> function when the
          archive was opened.</p>
      </desc>
    </func>
    <func>
      <name name="zip_close" arity="1"/>
      <fsummary>Close an open archive</fsummary>
      <desc>
        <p>The <marker id="zip_close"></marker><c>zip_close/1</c> function
          closes a zip archive, previously opened with <c>zip_open</c>. All
          resources are closed, and the handle should not be used after
          closing.</p>
      </desc>
    </func>
  </funcs>
</erlref>