20 lines
524 B

"""EasyEngine extarct core classes."""
10 years ago
import tarfile
import os
class EEExtract():
"""Method to extract from tar.gz file"""
10 years ago
def extract(self, file, path):
try:
tar = tarfile.open(file)
tar.extractall(path=path)
tar.close()
10 years ago
os.remove(file)
return True
except tarfile.TarError as e:
10 years ago
self.app.log.error('Unable to extract file', e.reason())
self.app.log.info("Unable to extract file "+file)
return False