We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hello i want to extract a zip file by patoolib in python but this error shows
The text was updated successfully, but these errors were encountered:
i tried this way
patoolib.extract_archive(archive=file_adress, outdir=f"/home/container/users_file/{chat_id}/files/",password=password)
but this error shows
patoolib.util.PatoolError: could not find an executable program to extract format rar; candidates are rar,unrar,7z,7zz,7zzs,unar
Sorry, something went wrong.
could not find an executable program to extract format rar
This indicates that the file is perhaps not a zip file. Patool seems to detect it as a RAR file.
Use the newest patool version and run with option "-vv" (twice verbose). The debugging output will tell you what file type is detected.
You can also run file yourarchive.zip to display information about the archive file.
file yourarchive.zip
No branches or pull requests
hello
i want to extract a zip file by patoolib in python but this error shows
The text was updated successfully, but these errors were encountered: