class Zip64::File::Entry
- Zip64::File::Entry
- Reference
- Object
Overview
An entry inside a Zip64::File
.
Use the #open
method to read from it.
Included Modules
Defined in:
zip64/file.crInstance Method Summary
-
#open(&)
Yields an
IO
to read this entry's contents.
Instance methods inherited from module Zip64::FileInfo
comment
comment,
comment=(comment)
comment=,
compressed_size
compressed_size,
compressed_size=(compressed_size)
compressed_size=,
compression_method
compression_method,
compression_method=(compression_method)
compression_method=,
crc32
crc32,
crc32=(crc32)
crc32=,
dir? : Bool
dir?,
extra
extra,
extra=(extra)
extra=,
file? : Bool
file?,
filename
filename,
filename=(filename)
filename=,
general_purpose_bit_flag
general_purpose_bit_flag,
general_purpose_bit_flag=(general_purpose_bit_flag)
general_purpose_bit_flag=,
offset
offset,
offset=(offset)
offset=,
time : Time
time,
time=(time : Time)
time=,
uncompressed_size
uncompressed_size,
uncompressed_size=(uncompressed_size)
uncompressed_size=,
version : UInt16
version,
version=(version : UInt16)
version=
Constructor methods inherited from module Zip64::FileInfo
new(filename : String, time = Time.utc, comment = "", extra = Bytes.empty)
new
Instance Method Detail
def open(&)
#
Yields an IO
to read this entry's contents.
Multiple entries can be opened and read concurrently.