Associative array indexed by the name of each member of the archive.
All the members of the archive can be accessed with a foreach loop:
Associative array with all archive members.
ZipArchive archive = new ZipArchive(data); foreach (ArchiveMember am; archive.directory) { writefln("member name is '%s'", am.name); }
See Implementation
Associative array indexed by the name of each member of the archive.
All the members of the archive can be accessed with a foreach loop: