diff options
Diffstat (limited to 'shiftskn/Decode.cs')
| -rw-r--r-- | shiftskn/Decode.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/shiftskn/Decode.cs b/shiftskn/Decode.cs new file mode 100644 index 0000000..4041a6a --- /dev/null +++ b/shiftskn/Decode.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.IO.Compression; +using System.Text; + +namespace shiftskn +{ + public abstract class Decode + { + public static void DecodeSkinToDir(string inputFile, string outputPath) + { + string folderName = @"\" + Path.GetFileNameWithoutExtension(inputFile); + outputPath = outputPath.TrimEnd(Path.DirectorySeparatorChar); + outputPath = outputPath + folderName; + ZipFile.ExtractToDirectory(inputFile, outputPath); + Console.WriteLine("Extracted " + Path.GetFileName(inputFile) + " to " + outputPath); + } + } +} |
