ZipPolicy

Policy class for reading and writing zip archives.

Currently lacks support for: + Multiple disk zip files + Compression algorithms other than deflate + Zip64 + Encryption

Members

Classes

DirectoryImpl
class DirectoryImpl

Directory implementation for Zip archives. Provides any additional functionality required by ZipArchives.

FileImpl
class FileImpl

File implementation for Zip archives. Provides any additional functionality required of files by ZipArchives.

Properties
class Properties

Archive-wide properties for ZipArchives.

Static functions

deserialize
void deserialize(void[] data, Archive!(ZipPolicy, Filter) archive)

Deserialize method which loads data from a zip archive and stores it in archive.

serialize
void[] serialize(Archive!(ZipPolicy, Filter) archive)

Serialize method which writes data stored in the archive to an array and returns it.

Static variables

hasProperties
immutable(bool) hasProperties;
Undocumented in source.
isReadOnly
immutable(bool) isReadOnly;
Undocumented in source.

Meta