AA2Install.Archives._7z.Extract C# (CSharp) Méthode

Extract() public static méthode

Extracts a 7Zip archive to the temp folder
public static Extract ( string filename, string dest = "" ) : void
filename string Location of the 7Zip file.
dest string Destination of extracted files.
Résultat void
        public static void Extract(string filename, string dest = "")
        {
            Extract(filename, "AA2_*", dest);
        }

Same methods

_7z::Extract ( string filename, string wildcard, string dest = "" ) : void