Exemplo n.º 1
0
        /// <summary>
        /// Unzip the file to the specified path.
        /// </summary>
        protected virtual void ExtractorZip(string file, string extractPath)
        {
            var extractor = new ExtractorZip(GetIO(), fileSystem);

            extractor.Extract(file, extractPath);
        }
Exemplo n.º 2
0
 /// <inheritdoc />
 protected internal override void Extract(IPackage package, string file, string extractPath)
 {
     extractor.Extract(file, extractPath);
 }