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);
}
}