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:

class ZipArchive
@property @safe @nogc pure nothrow
directory
()

Return Value

Type: ArchiveMember[string]

Associative array with all archive members.

Examples

ZipArchive archive = new ZipArchive(data);
foreach (ArchiveMember am; archive.directory)
{
    writefln("member name is '%s'", am.name);
}

Meta