mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
Indexed Entry Table #486
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @GihanSoft on GitHub (Dec 23, 2021).
Is anyway to save each entry index so app not need to iterate all of archive each time need one of entries?
now I do this:
I like something like this:
@adamhathcock commented on GitHub (Dec 24, 2021):
Readers are useful for forward only streams. If you're iterating over the stream multiple times, then it's probably not a forward-only stream.
Use the Archive interface which indexes entries for random access.
@GihanSoft commented on GitHub (Dec 24, 2021):
Tank you. this lib is really great and helpful.