vote up 8 vote down star
2

I need to periodically download, extract and save the contents of http://data.dot.state.mn.us/dds/det_sample.xml.gz to disk. Anyone have experience downloading gzipped files with C#?

flag

6 Answers

vote up 11 vote down check

Here is a post I wrote last year that shows how to decompress a gzip file using C# and the built-in GZipStream class. http://blogs.msdn.com/miah/archive/2007/09/05/zipping-files.aspx

As for downloading it, you can use the standard WebRequest or WebClient classes in .NET.

link|flag
+1 The link was helpful to me just now using compression for the first time. Nice, useful, concise blog entry. – J M Mar 20 at 18:40
vote up 1 vote down

The GZipStream class might be what you want.

link|flag
vote up 2 vote down

Just use the HttpWebRequest class in the System.Net namespace to request the file and download it. Then use GZipStream class in the System.IO.Compression namespace to extract the contents to the location you specify. They provide examples.

link|flag
vote up 3 vote down

You can use WebClient in System.Net to download:

WebClient Client = new WebClient ();
Client.DownloadFile("http://data.dot.state.mn.us/dds/det_sample.xml.gz", " C:\mygzipfile.gz");

then use #ziplib to extract

Edit: or GZipStream... forgot about that one

link|flag
vote up 4 vote down

Try the SharpZipLib, a C# based library for compressing and uncompressing files using gzip/zip.

Sample usage can be found on this blog post:

using ICSharpCode.SharpZipLib.Zip;

FastZip fz = new FastZip();       
fz.ExtractZip(zipFile, targetDirectory,"");
link|flag
vote up 0 vote down

How do you download over SSL?

(I know this isnt an answer, but i didnt want to create a whole new ? out of this, i'd like to enhance this existing ?)

link|flag
You should do a new question and refer to this one – John Sheehan Sep 18 '08 at 3:15
Better create a new one. Highjacking questions ain't nice! – Sam Jan 5 at 10:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.