mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
added console test utlities.
This commit is contained in:
29
deflate.cs
Normal file
29
deflate.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
//! \file deflate.cs
|
||||
//! \date Tue Jul 08 15:01:34 2014
|
||||
//! \brief deflate file into zlib stream.
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using ZLibNet;
|
||||
|
||||
class Inflate
|
||||
{
|
||||
public static void Main (string[] args)
|
||||
{
|
||||
if (args.Length != 2)
|
||||
return;
|
||||
try
|
||||
{
|
||||
using (var input = File.Open (args[0], FileMode.Open, FileAccess.Read))
|
||||
using (var output = File.Create (args[1]))
|
||||
using (var stream = new DeflateStream (output, CompressionMode.Compress, CompressionLevel.Level5))
|
||||
input.CopyTo (stream);
|
||||
Console.WriteLine ("{0} => {1}", args[0], args[1]);
|
||||
}
|
||||
catch (Exception X)
|
||||
{
|
||||
Console.Error.WriteLine (X.Message);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user