Quantcast
Channel: How to download a file from the web within a WinForm application - Stack Overflow
Browsing latest articles
Browse All 4 View Live

Answer by Daniel Mošmondor for How to download a file from the web within a...

Since you have gigantic files, prepare for some kind of connection recovery. Whatever method you will find out to get something from the http (WebClient, TcpStream, ...) you should probably code with...

View Article



Answer by Thomas Levesque for How to download a file from the web within a...

Just use WebClient.DownloadFile (or WebClient.DownloadFileAsync if you don't want to freeze the UI during the download)

View Article

Answer by Remus Rusanu for How to download a file from the web within a...

WebClient.DownloadData, the spec contains a small sample. It is arguably more efficient to use WebRequest.GetResponseStream and save the data chunk by chunk, but you'll have to properly prepare the...

View Article

How to download a file from the web within a WinForm application

I'm writting a C# utility program that I need the ability to download and save a file from a URL.I have the code working to obtain the URL from a web service call, however I'm having trouble finding a...

View Article
Browsing latest articles
Browse All 4 View Live




Latest Images