Top "Compression" questions

The name given to the process of encoding data such that it uses lesser number of bits as compared to the original representation.

Deleting files after adding to tar archive

Can GNU tar add many files to an archive, deleting each one as it is added? This is useful when …

bash unix compression tar
How to compress files

I want to compress a file and a directory in C#. I found some solution in Internet but they are …

c# .net io compression c#-2.0
Unable to find type [System.IO.Compression.CompressionLevel]: make sure that the assembly containing this type is loaded

I wrote this PowerShell script to archive all log files created during a certain date range. $currentDate = Get-Date; $currentDate | Get-Member …

powershell compression runtime-error powershell-2.0 .net-assembly
GZipStream and decompression

I have code that should do the compression: FileStream fs = new FileStream("g:\\gj.txt", FileMode.Open); FileStream fd = new …

c# gzipstream compression
How can I get gzip compression in IIS7 working?

I have installed Static and dynamic compression for IIS7, as well as setting the two web.config values at my …

asp.net .net-3.5 iis-7 compression gzip
How do you create a .gz file using PHP?

I would like to gzip compress a file on my server using PHP. Does anyone have an example that would …

php compression gzip
How do I enable gzip compression when using MVC3 on IIS7?

Does anybody know how to enable gzip compression in MVC 3? I'm using IIS7. Google Chrome Audit's result: Enable gzip compression (4) …

asp.net-mvc asp.net-mvc-3 iis compression gzip
Installed .Net 4.5 but can't use ZipFile class in Visual C#

I'm kind of a newbie to Visual Studio programming. I recently upgraded .Net 4.0 to 4.5 in order to use the ZipFile …

c# .net visual-studio-2012 compression zipfile
How to compress a buffer with zlib?

There is a usage example at the zlib website: http://www.zlib.net/zlib_how.html However in the example …

c++ compression zlib
Python: Inflate and Deflate implementations

I am interfacing with a server that requires that data sent to it is compressed with Deflate algorithm (Huffman encoding + …

c# python compression zlib