【C#】【FTP】從FTP服務器下載文件到本地

 static void Main(string[] args)
        {
            //ftp服務器路徑
            string ftpServer = System.Configuration.ConfigurationSettings.AppSettings["FtpServer"].ToString();
            //ftp本地路徑
            string ftpDefaultUrl = System.Configuration.ConfigurationSettings.AppSettings["FtpDefaultUrl"].ToString();
            //登入到ftp的賬號
            string ftpUserName = System.Configuration.ConfigurationSettings.AppSettings["LoginID"].ToString();
            //登入到ftp的密碼
            string ftpUserPwd = System.Configuration.ConfigurationSettings.AppSettings["LoginPWD"].ToString();
            //下載後的文件存放路徑
            string downloadUrl = System.Configuration.ConfigurationSettings.AppSettings["DownloadPath"].ToString();
            //需要下載的文件名
            string fileName =  "test.txt";
            //需要現在的文件在ftp上的完整路徑
            string fileUploadPath = ftpServer + ftpDefaultUrl;
            Uri uri = new Uri(fileUploadPath+"/"+fileName);
            //下載後存放的路徑
            string FileName = Path.GetFullPath(downloadUrl) + Path.DirectorySeparatorChar.ToString() + Path.GetFileName(uri.LocalPath); 
            
            //創建文件流
            FileStream fs = null;
            Stream responseStream = null;
            try {
                //創建一個與FTP服務器聯繫的FtpWebRequest對象
                FtpWebRequest request = (FtpWebRequest)WebRequest.Create(uri);
                //設置請求的方法是FTP文件下載
                request.Method = WebRequestMethods.Ftp.DownloadFile;
                //連接登錄FTP服務器
                request.Credentials = new NetworkCredential(ftpUserName, ftpUserPwd);
                //獲取一個請求響應對象
                FtpWebResponse response = (FtpWebResponse)request.GetResponse();
                //獲取請求的響應流
                responseStream = response.GetResponseStream();
                //判斷本地文件是否存在,如果存在,則打開和重寫本地文件
                if (File.Exists(FileName))
                {
                    fs = File.Open(FileName, FileMode.Open, FileAccess.ReadWrite);
                }
                else
                {
                    fs = File.Create(FileName);
                }
            
               if (fs != null)
                {
                    int buffer_count = 65536;
                    byte[] buffer = new byte[buffer_count];
                    int size = 0;
                    while ((size = responseStream.Read(buffer, 0, buffer_count)) > 0)
                    {
                        fs.Write(buffer, 0, size);
                    }
                    fs.Flush();
                    fs.Close();
                    responseStream.Close();
                }
            }
            finally
            {
                if (fs != null)
                    fs.Close();
                if (responseStream != null)
                    responseStream.Close();
            }
        }

App.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="FtpServer" value="ftp://192.168.123.156/"/>
    <add key="FtpDefaultUrl" value="/Upload"/>
    <add key="LoginID" value="zs"/>
    <add key="LoginPWD" value="123@qwe"/>
    <add key="DownloadPath" value="/Download"/>
  </appSettings>
</configuration> 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章