[Overview][Constants][Types][Classes][Index] |
Record storing end of central directory information
Source position: zipper.pp line 130
type End_of_Central_Dir_Type = packed record |
||
Signature: LongInt; |
|
End of central directory signature |
Disk_Number: Word; |
|
Number of this disk |
Central_Dir_Start_Disk: Word; |
|
Number of the disk with the start of the central directory |
Entries_This_Disk: Word; |
|
Total number of entries in the central directory in this disk |
Total_Entries: Word; |
|
Total number of entries in the central directory |
Central_Dir_Size: LongWord; |
|
Size of the central directory |
Start_Disk_Offset: LongWord; |
|
Offset of the start of the central directory against the starting disk number |
ZipFile_Comment_Length: Word; |
|
Length of the zip comment field |
end; |
The end of central directory is placed at the end of the zip file. Note that the end of central directory record is distinct from the Zip64 end of central directory record and zip64 end of central directory locator, which precede the end of central directory, if implemented.