struct Core::Zip::CentralDirEndRecordLocator64

Overview

Zip64 end of central directory locator. More…

#include <corezipfileformat.h>

struct CentralDirEndRecordLocator64
{
    // fields

    uint32 signature;
    uint32 startDiskNumber;
    uint64 dirEndRecordOffset;
    uint32 totalDiskCount;

    // methods

    bool read(IO::BinaryAccessor& s);
    bool write(IO::BinaryAccessor& s) const;
};

Detailed Documentation

Zip64 end of central directory locator.

Fields

uint32 signature

zip64 end of central dir locator 4 bytes (0x07064b50)

uint32 startDiskNumber

number of the disk with the start of the zip64 end of central directory 4 bytes

uint64 dirEndRecordOffset

relative offset of the zip64 end of central directory record 8 bytes

uint32 totalDiskCount

total number of disks 4 bytes