Adding isa( 'IO::Seekable' ) to _isSeekable. Also seek doesn't imply tell, so added...
[archive-zip.git] / README
blobec11718203d3e1d0e7d43622828dccf54c099fc9
1 The Archive::Zip module allows a Perl program to create, manipulate,\r
2 read, and write Zip archive files.\r
3 \r
4 Zip archives can be created, or you can read from existing zip files.\r
5 Once created, they can be written to files, streams, or strings.\r
6 \r
7 Members can be added, removed, extracted, replaced, rearranged, and\r
8 enumerated.  They can also be renamed or have their dates, comments, or\r
9 other attributes queried or modified.  Their data can be compressed or\r
10 uncompressed as needed.  Members can be created from members in existing\r
11 Zip files, or from existing directories, files, or strings.\r
13 This module uses the Compress::Zlib library to read and write the\r
14 compressed streams inside the files.\r
16 Examples and helper libraries are given to show how:\r
17   * zip files can be written to strings\r
18   * zip files can be written in chunks to arbitrary functions\r
20 Documentation will be installed as man pages for:\r
21         Archive::Zip\r
22         Archive::Zip::FAQ\r
23         Archive::Zip::Tree\r
24         Archive::Zip::MemberRead\r
26 Copyright (c) 2000-2003 Ned Konz. All rights reserved.  This program is free\r
27 software; you can redistribute it and/or modify it under the same terms\r
28 as Perl itself.\r