AvalonPatch.AvalonPatch.installZip C# (CSharp) Méthode

installZip() public méthode

public installZip ( patchFile thePatch ) : void
thePatch patchFile
Résultat 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)));
        }