rardecode
rardecode copied to clipboard
A go package for reading RAR archives.
It would be nice to able able to get a list of all file(names) without having to reopen the archive. Currently, we can check filenames one by one using Next(),...
Create examples in Readme and source (for godoc reference).
Another feature request: is it possible to add Previous, First, Last, JumpTo, NFiles functions? In fact, API-wise, only JumpTo and NFiles should be enough (similar to what lib7zip provides), replacing...
Less verbose than `rardecode`, and `unrar` has also been the name of the *nix utility for a long time. If there are plans for an encoder, that I can suggest...
This was discovered while using rardecode > mholt/archiver > trufflehog. The problematic line is below, although the reason for the failure is unclear. https://github.com/nwaples/rardecode/blob/434b4a38896d211779c5cc5e5933c9da424a5a21/ppm_model.go#L453 ``` panic: runtime error: index out...
`runzip`: - https://github.com/therootcompany/runzip # Usage ```sh USAGE runzip [./dst/] EXAMPLES runzip ./archive.rar # ./inner-dir/ runzip ./archive.rar ./existing-dir/ # ./existing-dir/inner-dir/ runzip ./archive.rar ./new-dir/ # ./new-dir/ ``` Special feature: it ensures exactly...