-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reading previously divided archives #36
Comments
@web-masta can you provide php code example? |
Failing while trying to |
@web-masta and what kind of behavior do you expect? |
I expect to somehow get the list of contents of those files. But I can see entries only in error message. The problem is that different parts of archives can be uploaded in different directories, or even on different disks. This whole system of uploading was made ages ago and back then there was no need to look inside archives. |
@web-masta but this will only be a partial list of files. falling into a part of the archive. <?php
use Archive7z\Archive7z;
class MyArchive7z extends Archive7z
{
protected function execute(Process $process): Process
{
$exitCode = $process->run();
if ($exitCode > 2) {
throw new ProcessFailedException($process);
}
return $process;
}
} |
Thank you! I will try this out. |
Hello and thank you for this cool tool!
I have a problem with reading contents of divided into parts archives. The command is failing, however showing some contents.
File names are stored as hash values.
Is there a simple solution to, maybe, ignore or fix this type of error without archive modification? The process is failing before I can catch it in an easy way.
Example output:
The text was updated successfully, but these errors were encountered: