程式碼:
public void Upload(string filename)
{
//IP
string FtpIP = System.Web.Configuration.WebConfigurationManager.AppSettings["ftpIP"];
//使用者名稱
string FtpUserName = System.Web.Configuration.WebConfigurationManager.AppSettings["ftpUsrName"];
//使用者密碼
string FtpPassord = System.Web.Configuration.WebConfigurationManager.AppSettings["ftpUsrPsw"];
FileInfo fileInf = new FileInfo(filename);
string uri = "ftp://" + FtpIP + "/SYS/" + fileInf.Name;
FtpWebRequest reqFTP;
// 根據uri建立FtpWebRequest物件
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(uri));
// ftp使用者名稱和密碼
reqFTP.Credentials = new NetworkCredential(FtpUserName, FtpPassord);
// 預設為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();
Stream strm = reqFTP.GetRequestStream();
// 每次讀檔案流的2kb
contentLen = fs.Read(buff, 0, buffLength);
// 流內容沒有結束
while (contentLen != 0)
// 把內容從file stream 寫入 upload stream
strm.Write(buff, 0, contentLen);
}
// 關閉兩個流
strm.Close();
fs.Close();
catch (Exception ex)
throw ex;
程式碼:
public void Upload(string filename)
{
//IP
string FtpIP = System.Web.Configuration.WebConfigurationManager.AppSettings["ftpIP"];
//使用者名稱
string FtpUserName = System.Web.Configuration.WebConfigurationManager.AppSettings["ftpUsrName"];
//使用者密碼
string FtpPassord = System.Web.Configuration.WebConfigurationManager.AppSettings["ftpUsrPsw"];
FileInfo fileInf = new FileInfo(filename);
string uri = "ftp://" + FtpIP + "/SYS/" + fileInf.Name;
FtpWebRequest reqFTP;
// 根據uri建立FtpWebRequest物件
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(uri));
// ftp使用者名稱和密碼
reqFTP.Credentials = new NetworkCredential(FtpUserName, FtpPassord);
// 預設為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();
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)
{
throw ex;
}
}