Source code for gdeps.sevenzip
#!python3
# Copyright 2007-2017 Gemr. All Rights Reserved.
# Licensed to MIT see LICENSE.txt
import gdeps as GDeps
__author__ = 'Suryavarman (http://sourceforge.net/u/suryavarman/profile/)'
[docs]class SevenZip(GDeps.Archive):
def __init__(self, inConfigFile, inFolderPath, inLogFileDirectory, inArchiveUrl, inSectionName="7zip", inExePath=r"C:\\Program Files\\7-Zip\\7z.exe"):
""" """
GDeps.Archive.__init__(self, inConfigFile, inFolderPath, inLogFileDirectory, inArchiveUrl, inSectionName, inExePath)
self.m_ErrorRegexp = r"(.*Error:.*)"