Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 291 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 291 Bytes

deflate

This project provides two simple programs:

  • deflate.exe
  • inflate.exe

They are implented using the System.IO.Compression.DeflateStream provided in .NET.

Usage:

C:\> type MYFILE | deflate.exe > MYFILE.deflated
C:\> type MYFILE.deflated | inflate.exe > MYFILE