- zipper_file_info(+Zipper, -Name, -Attrs) is det
- Obtain information about the current zip entry. Name is an atom
representing the name of the entry. Attrs is a dict holding:
- compressed_size:Bytes
- Size in the archive
- uncompressed_size:Bytes
- Bytes after decompression
- time:Stamp
- Numeric time stamp in Prolog native format (float
expressing seconds since Jan 1, 1970). Note that
the resolution of time in zip archives is one
second.
- extra:Extra
- comment:Extra
- Optional additional fields.
- offset:Offset
- Direct pointer to this entry. May be used with zip_goto/2.