diff options
| author | AShifter <[email protected]> | 2018-02-12 09:10:20 -0700 |
|---|---|---|
| committer | AShifter <[email protected]> | 2018-02-12 09:10:20 -0700 |
| commit | 70d9df993db283d38f5441d0d0f47b5803020630 (patch) | |
| tree | 2b3605c76ce04d0ec7bc337d1cd70669f3920528 /shiftskn/Decode.cs | |
| parent | d078e1089c8d1f0efc14c2461017ff244cc3031e (diff) | |
| download | shiftskn-rewind-master.tar.gz shiftskn-rewind-master.tar.bz2 shiftskn-rewind-master.zip | |
I think this one can decompile 0.0.x skins, not sure... Maybe I should
check?
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); + } + } +} |
