NewReader returns a new [*Reader] reading from r, which is assumed to have the given size in bytes.
(r io.ReaderAt, size int64)
| 306 | // NewReader returns a new [*Reader] reading from r, which is assumed to have |
| 307 | // the given size in bytes. |
| 308 | func NewReader(r io.ReaderAt, size int64) (*Reader, error) { |
| 309 | return NewReaderWithPassword(r, size, "") |
| 310 | } |
| 311 | |
| 312 | // Open opens the named file in the 7-zip archive, using the semantics of |
| 313 | // [fs.FS.Open]: paths are always slash separated, with no leading / or ../ |
searching dependent graphs…