You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes you have a large archive and only need to access one or a small number of the files. However, to get metadata you need to call ReadCentralDir which in turn calls GetFileOffset that seeks and reads twice to calculate each file offset.
This is unnecessary unless you are interested in the file offsets or want to extract files.
The new version calculates the file offset only when needed in ExtractFileAsync. This feature is only active if the optional parameter was used.
The text was updated successfully, but these errors were encountered:
Sometimes you have a large archive and only need to access one or a small number of the files. However, to get metadata you need to call
ReadCentralDir
which in turn callsGetFileOffset
that seeks and reads twice to calculate each file offset.This is unnecessary unless you are interested in the file offsets or want to extract files.
The new version calculates the file offset only when needed in
ExtractFileAsync
. This feature is only active if the optional parameter was used.The text was updated successfully, but these errors were encountered: