README 684 B

123456789101112131415161718
  1. Archive::Zip module allows a Perl program to create, manipulate,
  2. read, and write Zip archive files.
  3. Zip archives can be created, or you can read from existing zip files.
  4. Once created, they can be written to files, streams, or strings. Members
  5. can be added, removed, extracted, replaced, rearranged, and enumerated.
  6. They can also be renamed or have their dates, comments, or other
  7. attributes queried or modified. Their data can be compressed or
  8. uncompressed as needed.
  9. Members can be created from members in existing Zip files, or from
  10. existing directories, files, or strings.
  11. This module uses the Compress::Zlib library to read and write the
  12. compressed streams inside the files.