diff options
| author | Mark Linton <redshirt.linton@gmail.com> | 2013-11-10 10:11:42 -0800 |
|---|---|---|
| committer | Mark Linton <redshirt.linton@gmail.com> | 2013-11-10 10:11:42 -0800 |
| commit | 0bf016d0ff500a2a2ffc51a22f90748b79d6dbbc (patch) | |
| tree | 91c6b2f4b42fcced133f1055db6dec439745867a /MediaBrowser.Model/IO/IZipClient.cs | |
| parent | 90e75c05b76a8a8dcb31dded553eae7258eca624 (diff) | |
Expose Rar support
Diffstat (limited to 'MediaBrowser.Model/IO/IZipClient.cs')
| -rw-r--r-- | MediaBrowser.Model/IO/IZipClient.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Model/IO/IZipClient.cs b/MediaBrowser.Model/IO/IZipClient.cs index 1fa3e0271..ba0725da5 100644 --- a/MediaBrowser.Model/IO/IZipClient.cs +++ b/MediaBrowser.Model/IO/IZipClient.cs @@ -54,5 +54,21 @@ namespace MediaBrowser.Model.IO /// <param name="targetPath">The target path.</param> /// <param name="overwriteExistingFiles">if set to <c>true</c> [overwrite existing files].</param> void ExtractAllFromTar(Stream source, string targetPath, bool overwriteExistingFiles); + + /// <summary> + /// Extracts all from rar. + /// </summary> + /// <param name="sourceFile">The source file.</param> + /// <param name="targetPath">The target path.</param> + /// <param name="overwriteExistingFiles">if set to <c>true</c> [overwrite existing files].</param> + void ExtractAllFromRar(string sourceFile, string targetPath, bool overwriteExistingFiles); + + /// <summary> + /// Extracts all from rar. + /// </summary> + /// <param name="source">The source.</param> + /// <param name="targetPath">The target path.</param> + /// <param name="overwriteExistingFiles">if set to <c>true</c> [overwrite existing files].</param> + void ExtractAllFromRar(Stream source, string targetPath, bool overwriteExistingFiles); } } |
