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

Extract() public static method

Extracts a 7Zip archive to the temp folder (using wildcard)
public static Extract ( string filename, string wildcard, string dest = "" ) : void
filename string Location of the 7Zip file.
wildcard string Wildcard.
dest string
return void
        public static void Extract(string filename, string wildcard, string dest = "")
        {
            Task t = new Task(() => SyncExtract(filename, wildcard, dest)); //I have no idea how async methods work

            t.SemiAsyncWait();
        }

Same methods

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