AA2Install.Archives._7z.Extract C# (CSharp) Method

Extract() public static method

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.
return void
        public static void Extract(string filename, string dest = "")
        {
            Extract(filename, "AA2_*", dest);
        }

Same methods

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