AvalonPatch.AvalonPatch.installZip C# (CSharp) Method

installZip() public method

public installZip ( patchFile thePatch ) : void
thePatch patchFile
return void
        void installZip(patchFile thePatch)
        {
            FastZip fz = new FastZip();
            fz.ExtractZip(Path.Combine(tempExtractPath, thePatch.patchFileName), Path.Combine(tempExtractPath, Path.GetFileNameWithoutExtension(thePatch.patchFileName)), "");
            checkAndCopy(Path.Combine(tempExtractPath, Path.GetFileNameWithoutExtension(thePatch.patchFileName)));
        }