Exemplo n.º 1
0
        public override void ThreadExtract7z(string filePath, string outPath, ExtractCallback callback)
        {
            CompressTool ct = new CompressTool();

            ct.zipPath  = filePath;
            ct.tempPath = outPath;
            ct.Extract();
            callback(10, 10);
        }
Exemplo n.º 2
0
        public override bool Extract7z(string filePath, string outPath)
        {
            CompressTool ct = new CompressTool();

            ct.zipPath  = filePath;
            ct.tempPath = outPath + "res/";
            ct.Extract();
            return(true);
        }