Je peux décompresser un fichier si le fichier est un .Zip
et fichier unsar si mon type de fichier est .rar
. Comment puis-je faire cela avec python 2.7?
Essayez le package pyunpack
:
from pyunpack import Archive
Archive('a.Zip').extractall('/path/to')
Tard, mais je n'ai été satisfait d'aucune des réponses.
pip install patool
import patoolib
patoolib.extract_archive("foo_bar.rar", outdir="path here")
Fonctionne sur Windows et Linux sans aucune autre bibliothèque nécessaire.