在C#中上傳文件和下載文件的簡單示例
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
在C#中上傳文件和下載文件的簡單示例-附源碼下載,類似完成FTP的功能,不過本程序還不能算是一個FTP程序,操作方法簡單,選擇需要上傳的文件,再勾選上邊的對應操作項即可,下載時候記著選擇文件下載的本地路徑。
private WebClient MyWebClient=new WebClient(); private void BeginBtn_click(object sender, System.EventArgs e) { string URL=textBox1.Text; if(radioButton1.Checked==false&&radioButton2.Checked==false) MessageBox.Show("Please choose the mode!"); else { if(radioButton1.Checked==true) { try { statusBar1.Text="Begin to download"; MyWebClient.DownloadFile(URL,textBox2.Text); statusBar1.Text="Download Successfully!"; } catch(WebException ee) {MessageBox.Show(ee.Message);} } if(radioButton2.Checked==true) { try { statusBar1.Text="Begin to upload"; MyWebClient.UploadFile(URL,textBox2.Text); statusBar1.Text="Upload Successfully!"; } catch(WebException ee) {MessageBox.Show(ee.Message);} } } } 該文章在 2021/2/4 12:09:38 編輯過 |
關鍵字查詢
相關文章
正在查詢... |