-
-
Notifications
You must be signed in to change notification settings - Fork 3
USTAR.TarReader.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 item into. To skip extracting the current item, or if the current item is a directory, pass Nil . |
Returns True
if extraction succeeded and the next item is ready. The last entry will return False
and set TarReader.LastError
to ERR_END_ARCHIVE
.
Advances to the next entry in the archive. If there are no more entries then this method returns False. If a non-Nil writeable stream is specified by the parameters then the data is extracted. Pass Nil
to skip the current item.
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.