ZipArchive.directory
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:
Example:
ZipArchive archive = new ZipArchive(data);
foreach (ArchiveMember am; archive.directory)
{
writefln("member name is '%s'", am.name);
}Returns
Associative array with all archive members.