OpenReader will open the 7-zip file specified by name and return a [*ReadCloser]. If name has a ".001" suffix it is assumed there are multiple volumes and each sequential volume will be opened.
(name string)
| 282 | // [*ReadCloser]. If name has a ".001" suffix it is assumed there are multiple |
| 283 | // volumes and each sequential volume will be opened. |
| 284 | func OpenReader(name string) (*ReadCloser, error) { |
| 285 | return OpenReaderWithPassword(name, "") |
| 286 | } |
| 287 | |
| 288 | // NewReaderWithPassword returns a new [*Reader] reading from r using password |
| 289 | // as the basis of the decryption key, which is assumed to have the given size |
searching dependent graphs…