Skip to content

USTAR.TarReader.MoveNext

Andrew Lambert edited this page Nov 26, 2022 · 5 revisions

USTAR.TarReader.MoveNext

Method Signature

 Function MoveNext(ExtractTo As Writeable) As Boolean

Parameters

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.

Return value

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.

Remarks

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.

Entry-level points of interest denoted by "☜"



Clone this wiki locally