Slide 7
Slide 7 text
Codec.Archive.Zip.Entry
data Entry = Entry
{ eRelativePath :: FilePath -- ^ Relative path, using '/' as separator
, eCompressionMethod :: CompressionMethod -- ^ Compression method
, eLastModified :: Integer -- ^ Modification time (seconds since unix epoch)
, eCRC32 :: Word32 -- ^ CRC32 checksum
, eCompressedSize :: Word32 -- ^ Compressed size in bytes
, eUncompressedSize :: Word32 -- ^ Uncompressed size in bytes
, eExtraField :: B.ByteString -- ^ Extra field - unused by this library
, eFileComment :: B.ByteString -- ^ File comment - unused by this library
, eVersionMadeBy :: Word16 -- ^ Version made by field
, eInternalFileAttributes :: Word16 -- ^ Internal file attributes - unused by this library
, eExternalFileAttributes :: Word32 -- ^ External file attributes (system-dependent)
, eCompressedData :: B.ByteString -- ^ Compressed contents of file
} deriving (Read, Show, Eq)
7 © Tommaso Piazza, 2018 - https:/
/github.com/blender