-
-
Notifications
You must be signed in to change notification settings - Fork 3
PKZip.ZipReader.MoveNext
Andrew Lambert edited this page Nov 26, 2022
·
5 revisions
Function MoveNext(ExtractTo As Writeable) As Boolean
Name | Type | Comment |
---|---|---|
ExtractTo | Writeable | The stream to extract the current entry into. To skip extracting the current entry, or if the current entry is a directory, pass Nil . |
Returns True
if extraction succeeded and the next entry is ready. The last entry will return False
and set ZipReader.LastError
to ERR_END_ARCHIVE
.
This method extracts the current entry into the ExtractTo
parameter and then reads the metadata of the next entry. The next entry then becomes the current entry. If there are no more entries then this method returns False. Pass Nil
as the ExtractTo
parameter to skip extracting the current entry.
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.