C# FTP上傳

來源:互聯網
上載者:User

 

Code
/// <summary>
        /// ftp的上傳功能
        /// </summary>
        /// <param name="ftpServerIP"></param>
        /// <param name="filename"></param>
        /// <param name="ftpUserID"></param>
        /// <param name="ftpPassword"></param>
        public static void Upload(string ftpServerIP, string filename, string ftpUserID, string ftpPassword)
        {
            FileInfo fileInf = new FileInfo(filename);

            string uri = "ftp://" + ftpServerIP + "/" + fileInf.Name;
            FtpWebRequest reqFTP;

            // 根據uri建立FtpWebRequest對象 
            reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerIP + "/" + fileInf.Name));

            // ftp使用者名稱和密碼
            reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);

            // 預設為true,串連不會被關閉
            // 在一個命令之後被執行
            reqFTP.KeepAlive = false;

            // 指定執行什麼命令
            reqFTP.Method = WebRequestMethods.Ftp.UploadFile;

            // 指定資料轉送類型
            reqFTP.UseBinary = true;

            // 上傳檔案時通知伺服器檔案的大小
            reqFTP.ContentLength = fileInf.Length;

            // 緩衝大小設定為2kb
            int buffLength = 2048;

            byte[] buff = new byte[buffLength];
            int contentLen;

            // 開啟一個檔案流 (System.IO.FileStream) 去讀上傳的檔案
            FileStream fs = fileInf.OpenRead();
            try
            {
                // 把上傳的檔案寫入流
                Stream strm = reqFTP.GetRequestStream();

                // 每次讀檔案流的2kb
                contentLen = fs.Read(buff, 0, buffLength);

                // 流內容沒有結束
                while (contentLen != 0)
                {
                    // 把內容從file stream 寫入 upload stream
                    strm.Write(buff, 0, contentLen);

                    contentLen = fs.Read(buff, 0, buffLength);
                }

                // 關閉兩個流
                strm.Close();
                fs.Close();
            }
            catch (Exception ex)
            {
                // MessageBox.Show(ex.Message, "Upload Error");
                HttpContext.Current.Response.Write("Upload Error:" + ex.Message);
            }
        }

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.