Finds files stored within the archive.
[C#]
public bool FindNext(ref ArchiveItem f);
[VB.NET]
Public Function FindNext(ByRef f As ArchiveItem) As Boolean
Description
Use FindNext to find files stored inside the open archive file. FindNext return True if there is at least one file meets search conditions, otherwise it returns False. Use FindNext after calling FindFirst only.
Pass ArchiveItem class found by previous calling of FindFirst or FindNext to the FindNext.
After calling FindNext f parameter will contain parameters of the next found file.