3
Answers

Pulling Files from Web site

Administrator

Administrator

22y
5.3k
1
I need to be able to run a program that checks a web site for the current version of another program. if the local version is older than the current version i need to replace the exe and dll file with files on the web server. how do I from windows forms pull the files down to the local machine? TIA
Answers (3)
0
jrgc6

jrgc6

NA 12 0 21y
Everything isinside this function public void DownloadPicture() { int nNumErrors=0; WebClient client=new WebClient(); client.Credentials = CredentialCache.DefaultCredentials; while(!StopDownloading) { try { byte[] oFileData=client.DownloadData(m_sURL); if(oFileData.Length>20) { string sFileName=m_sID + "_" + DateTime.Now.ToString("yyyyMMdd hh mm ss") + ".jpg"; Bitmap.FromStream(new MemoryStream(oFileData)).Save(m_sFolderLocation + sFileName,ImageFormat.Jpeg); } } catch(SystemException ex) { nNumErrors++;} } }
0
Administrator

Administrator

Admin 2.3k 1.3m 21y
I know it's a long time scince you posted this, but look at the HttpWebRequest and HttpWebResonse Classes, there very easy to use, but don't use the Stream Reader to get the data, either use the stream directly or use the BinaryStreamReader. enjoy.
0
Administrator

Administrator

Admin 2.3k 1.3m 22y
You can use HTTP or FTP protocols for this purpose. See the Internet section of this site. There are some samples available. Also see The HttpWebClient class and its DownloadFile method (I think)