Assembly: IO;
The IZipArchiveEntry interface contains properties and methods that are used to work with ZIP archive element.
IZipArchiveEntry
A ZIP archive element can be obtained using various properties and methods of the IZipArchive interface.
Property name | Brief description | |
ArchPath | The ArchPath property returns the path to archive element. | |
ModificationDate | The ModificationDate property returns date and time of the last archive element change. | |
Owner | The Owner property returns the archive, in which the current element is created and stored. | |
Size | The Size property returns the source size of the file, to which the current archive element corresponds. |
Method name | Brief description | |
Remove | The Remove method removes the current element from archive. | |
Rename | The Rename method renames file or folder in archive. | |
UnpackFile | The UnpackFile method unpacks the current element to the specified hard drive folder. | |
UnpackFileToStream | The UnpackFileToStream method unpacks the current element to the specified stream. |
See also: