How do I compress a file with GZipStream and maintain meta-data about the original file? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T14:28:17Zhttp://stackoverflow.com/feeds/question/1001711http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1001711/how-do-i-compress-a-file-with-gzipstream-and-maintain-meta-data-about-the-origina1How do I compress a file with GZipStream and maintain meta-data about the original file?dinesh2009-06-16T14:06:33Z2009-06-16T14:23:07Z
<p>How can I get the extension of compressed file after being compressed with <code>System.IO.Compression.GZipStream</code>?</p>
<p>For example, if the original file is named <code>test.doc</code> and compresses to <code>test.gz</code>, how do I know what file extension to use when decompressing?</p>
http://stackoverflow.com/questions/1001711/how-do-i-compress-a-file-with-gzipstream-and-maintain-meta-data-about-the-origina/1001733#10017330Answer by RichardOD for How do I compress a file with GZipStream and maintain meta-data about the original file?RichardOD2009-06-16T14:08:37Z2009-06-16T14:08:37Z<p>Not sure what is your question- I assume you want a mechanism to "remember" what the extension was before the compression took place? </p>
<p>If that is the question then the convention of test.doc compressing into test.doc.gz will work.</p>
http://stackoverflow.com/questions/1001711/how-do-i-compress-a-file-with-gzipstream-and-maintain-meta-data-about-the-origina/1001735#10017350Answer by Mech Software for How do I compress a file with GZipStream and maintain meta-data about the original file?Mech Software2009-06-16T14:08:47Z2009-06-16T14:08:47Z<p>I had to do this some time ago. The solution is to use the J# libraries to do it. You still write it in C# however.</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc164129.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc164129.aspx</a></p>
<p>That's microsofts answer on the topic.</p>
http://stackoverflow.com/questions/1001711/how-do-i-compress-a-file-with-gzipstream-and-maintain-meta-data-about-the-origina/1001745#10017453Answer by Jon Grant for How do I compress a file with GZipStream and maintain meta-data about the original file?Jon Grant2009-06-16T14:09:48Z2009-06-16T14:09:48Z<p>There is no way to get the file name - in fact there may never be a filename at all, if for example a piece of data is created in memory and then send over a network connection.</p>
<p>Instead of replacing the file extension, why not append it, for example: test.doc.gz
Then you can simply strip it off when decompressing.</p>
http://stackoverflow.com/questions/1001711/how-do-i-compress-a-file-with-gzipstream-and-maintain-meta-data-about-the-origina/1001787#10017870Answer by Kev for How do I compress a file with GZipStream and maintain meta-data about the original file?Kev2009-06-16T14:16:42Z2009-06-16T14:16:42Z<p>The test.gz is just a raw byte stream with no meta-data about what has been compressed (for example, original file name, extension etc). What you'd need to do is create an archive that contains the gzip stream and meta-data about each file contained in the archive.</p>
<p>The article linked to in <a href="http://stackoverflow.com/questions/1001711/gzipstream-in-c-net/1001735#1001735">Mech Software's answer</a> provides a pretty reasonable way to implement this.</p>
<p>There was also this question (vaguely related) asked some time back which may help out:</p>
<blockquote>
<p><a href="http://stackoverflow.com/questions/900031/how-to-compress-a-directory-with-the-built-in-net-compression-classes">How to compress a directory with the built in .net compression classes?</a></p>
</blockquote>