原本這篇博文應該在上週就完成的,可無奈,最近工做比較忙,沒有時間寫,因此推遲到了今天。可悲的是,今天也沒有太多的時間,因此決定給你們貼出源碼,不作詳細的分析說明,若是有不懂的,能夠給我留言,咱們共同討論。服務器
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Security.Cryptography; using System.Text; using System.Windows.Forms; namespace UpLoad { class UpLoadFiles { private static string FTPCONSTR = "";//FTP的服務器地址,格式爲ftp://192.168.1.234:8021/。ip地址和端口換成本身的,這些建議寫在配置文件中,方便修改 private static string FTPUSERNAME = "";//FTP服務器的用戶名 private static string FTPPASSWORD = "";//FTP服務器的密碼 #region 本地文件上傳到FTP服務器 /// <summary> /// 上傳文件到遠程ftp /// </summary> /// <param name="path">本地的文件目錄</param> /// <param name="name">文件名稱</param> /// <returns></returns> public static bool UploadFile(string path, string name) { string erroinfo = ""; FileInfo f = new FileInfo(path); path = path.Replace("\\", "/"); path = FTPCONSTR + "/data/uploadFile/photo/" + name;//這個路徑是我要傳到ftp目錄下的這個目錄下 FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(path)); reqFtp.UseBinary = true; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); reqFtp.KeepAlive = false; reqFtp.Method = WebRequestMethods.Ftp.UploadFile; reqFtp.ContentLength = f.Length; int buffLength = 2048; byte[] buff = new byte[buffLength]; int contentLen; FileStream fs = f.OpenRead(); try { Stream strm = reqFtp.GetRequestStream(); contentLen = fs.Read(buff, 0, buffLength); while (contentLen != 0) { strm.Write(buff, 0, contentLen); contentLen = fs.Read(buff, 0, buffLength); } strm.Close(); fs.Close(); erroinfo = "完成"; return true; } catch (Exception ex) { erroinfo = string.Format("因{0},沒法完成上傳", ex.Message); return false; } } /// <summary> /// 上傳文件到遠程ftp /// </summary> /// <param name="ftpPath">ftp上的文件路徑</param> /// <param name="path">本地的文件目錄</param> /// <param name="id">文件名</param> /// <returns></returns> public static bool UploadFile(string ftpPath, string path, string id) { string erroinfo = ""; FileInfo f = new FileInfo(path); path = path.Replace("\\", "/"); bool b = MakeDir(ftpPath); if (b == false) { return false; } path = FTPCONSTR + ftpPath + id; FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(path)); reqFtp.UseBinary = true; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); reqFtp.KeepAlive = false; reqFtp.Method = WebRequestMethods.Ftp.UploadFile; reqFtp.ContentLength = f.Length; int buffLength = 2048; byte[] buff = new byte[buffLength]; int contentLen; FileStream fs = f.OpenRead(); try { Stream strm = reqFtp.GetRequestStream(); contentLen = fs.Read(buff, 0, buffLength); while (contentLen != 0) { strm.Write(buff, 0, contentLen); contentLen = fs.Read(buff, 0, buffLength); } strm.Close(); fs.Close(); erroinfo = "完成"; return true; } catch (Exception ex) { erroinfo = string.Format("因{0},沒法完成上傳", ex.Message); return false; } } /// <summary> /// 上傳 /// </summary> /// <param name="path">本地的文件目錄</param> /// <param name="name">文件名稱</param> /// <param name="pb">進度條</param> /// <returns></returns> public static bool UploadFile(string path, string name, ProgressBar pb) { string erroinfo = ""; float percent = 0; FileInfo f = new FileInfo(path); path = path.Replace("\\", "/"); path = FTPCONSTR + "/data/uploadFile/photo/" + name; FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(path)); reqFtp.UseBinary = true; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); reqFtp.KeepAlive = false; reqFtp.Method = WebRequestMethods.Ftp.UploadFile; reqFtp.ContentLength = f.Length; int buffLength = 2048; byte[] buff = new byte[buffLength]; int contentLen; FileStream fs = f.OpenRead(); int allbye = (int)f.Length; if (pb != null) { pb.Maximum = (int)allbye; } int startbye = 0; try { Stream strm = reqFtp.GetRequestStream(); contentLen = fs.Read(buff, 0, buffLength); while (contentLen != 0) { strm.Write(buff, 0, contentLen); startbye = contentLen + startbye; if (pb != null) { pb.Value = (int)startbye; } contentLen = fs.Read(buff, 0, buffLength); percent = (float)startbye / (float)allbye * 100; } strm.Close(); fs.Close(); erroinfo = "完成"; return true; } catch (Exception ex) { erroinfo = string.Format("因{0},沒法完成上傳", ex.Message); return false; } } /// <summary> /// 文件上傳到ftp /// </summary> /// <param name="ftpPath">ftp的文件路徑</param> /// <param name="path">本地的文件目錄</param> /// <param name="name">文件名稱</param> /// <param name="pb">進度條</param> /// <returns></returns> public static bool UploadFile(string ftpPath, string path, string name, ProgressBar pb) { //path = "ftp://" + UserUtil.serverip + path; string erroinfo = ""; float percent = 0; FileInfo f = new FileInfo(path); path = path.Replace("\\", "/"); bool b = MakeDir(ftpPath); if (b == false) { return false; } path = FTPCONSTR + ftpPath + name; FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(path)); reqFtp.UseBinary = true; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); reqFtp.KeepAlive = false; reqFtp.Method = WebRequestMethods.Ftp.UploadFile; reqFtp.ContentLength = f.Length; int buffLength = 2048; byte[] buff = new byte[buffLength]; int contentLen; FileStream fs = f.OpenRead(); int allbye = (int)f.Length; //if (pb != null) //{ // pb.Maximum = (int)allbye; //} int startbye = 0; try { Stream strm = reqFtp.GetRequestStream(); contentLen = fs.Read(buff, 0, buffLength); while (contentLen != 0) { strm.Write(buff, 0, contentLen); startbye = contentLen + startbye; percent = (float)startbye / (float)allbye * 100; if (percent <= 100) { int i = (int)percent; if (pb != null) { pb.BeginInvoke(new updateui(upui), new object[] { allbye, i, pb }); } } contentLen = fs.Read(buff, 0, buffLength); // Console.WriteLine(percent); } strm.Close(); fs.Close(); erroinfo = "完成"; return true; } catch (Exception ex) { erroinfo = string.Format("因{0},沒法完成上傳", ex.Message); return false; } } private delegate void updateui(long rowCount, int i, ProgressBar PB); public static void upui(long rowCount, int i, ProgressBar PB) { try { PB.Value = i; } catch { } } ////上面的代碼實現了從ftp服務器下載文件的功能 public static Stream Download(string ftpfilepath) { Stream ftpStream = null; FtpWebResponse response = null; try { ftpfilepath = ftpfilepath.Replace("\\", "/"); string url = FTPCONSTR + ftpfilepath; FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(url)); reqFtp.UseBinary = true; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); response = (FtpWebResponse)reqFtp.GetResponse(); ftpStream = response.GetResponseStream(); } catch (Exception ee) { if (response != null) { response.Close(); } MessageBox.Show("文件讀取出錯,請確認FTP服務器服務開啓並存在該文件"); } return ftpStream; } #endregion #region 從ftp服務器下載文件 /// <summary> /// 從ftp服務器下載文件的功能 /// </summary> /// <param name="ftpfilepath">ftp下載的地址</param> /// <param name="filePath">存放到本地的路徑</param> /// <param name="fileName">保存的文件名稱</param> /// <returns></returns> public static bool Download(string ftpfilepath, string filePath, string fileName) { try { filePath = filePath.Replace("個人電腦\\", ""); String onlyFileName = Path.GetFileName(fileName); string newFileName = filePath + onlyFileName; if (File.Exists(newFileName)) { //errorinfo = string.Format("本地文件{0}已存在,沒法下載", newFileName); File.Delete(newFileName); //return false; } ftpfilepath = ftpfilepath.Replace("\\", "/"); string url = FTPCONSTR + ftpfilepath; FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(url)); reqFtp.UseBinary = true; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); FtpWebResponse response = (FtpWebResponse)reqFtp.GetResponse(); Stream ftpStream = response.GetResponseStream(); long cl = response.ContentLength; int bufferSize = 2048; int readCount; byte[] buffer = new byte[bufferSize]; readCount = ftpStream.Read(buffer, 0, bufferSize); FileStream outputStream = new FileStream(newFileName, FileMode.Create); while (readCount > 0) { outputStream.Write(buffer, 0, readCount); readCount = ftpStream.Read(buffer, 0, bufferSize); } ftpStream.Close(); outputStream.Close(); response.Close(); return true; } catch (Exception ex) { //errorinfo = string.Format("因{0},沒法下載", ex.Message); return false; } } // /// <summary> /// 從ftp服務器下載文件的功能----帶進度條 /// </summary> /// <param name="ftpfilepath">ftp下載的地址</param> /// <param name="filePath">保存本地的地址</param> /// <param name="fileName">保存的名字</param> /// <param name="pb">進度條引用</param> /// <returns></returns> public static bool Download(string ftpfilepath, string filePath, string fileName, ProgressBar pb) { FtpWebRequest reqFtp = null; FtpWebResponse response = null; Stream ftpStream = null; FileStream outputStream = null; try { filePath = filePath.Replace("個人電腦\\", ""); String onlyFileName = Path.GetFileName(fileName); string newFileName = filePath + onlyFileName; if (File.Exists(newFileName)) { try { File.Delete(newFileName); } catch { } } ftpfilepath = ftpfilepath.Replace("\\", "/"); string url = FTPCONSTR + ftpfilepath; reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(url)); reqFtp.UseBinary = true; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); response = (FtpWebResponse)reqFtp.GetResponse(); ftpStream = response.GetResponseStream(); long cl = GetFileSize(url); int bufferSize = 2048; int readCount; byte[] buffer = new byte[bufferSize]; readCount = ftpStream.Read(buffer, 0, bufferSize); outputStream = new FileStream(newFileName, FileMode.Create); float percent = 0; while (readCount > 0) { outputStream.Write(buffer, 0, readCount); readCount = ftpStream.Read(buffer, 0, bufferSize); percent = (float)outputStream.Length / (float)cl * 100; if (percent <= 100) { if (pb != null) { pb.Invoke(new updateui(upui), new object[] { cl, (int)percent, pb }); } } // pb.Invoke(new updateui(upui), new object[] { cl, outputStream.Length, pb }); } //MessageBoxEx.Show("Download0"); return true; } catch (Exception ex) { //errorinfo = string.Format("因{0},沒法下載", ex.Message); //MessageBoxEx.Show("Download00"); return false; } finally { //MessageBoxEx.Show("Download2"); if (reqFtp != null) { reqFtp.Abort(); } if (response != null) { response.Close(); } if (ftpStream != null) { ftpStream.Close(); } if (outputStream != null) { outputStream.Close(); } } } #endregion #region 得到文件的大小 /// <summary> /// 得到文件大小 /// </summary> /// <param name="url">FTP文件的徹底路徑</param> /// <returns></returns> public static long GetFileSize(string url) { long fileSize = 0; try { FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(url)); reqFtp.UseBinary = true; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); reqFtp.Method = WebRequestMethods.Ftp.GetFileSize; FtpWebResponse response = (FtpWebResponse)reqFtp.GetResponse(); fileSize = response.ContentLength; response.Close(); } catch (Exception ex) { MessageBox.Show(ex.Message); } return fileSize; } #endregion #region 在ftp服務器上建立文件目錄 /// <summary> ///在ftp服務器上建立文件目錄 /// </summary> /// <param name="dirName">文件目錄</param> /// <returns></returns> public static bool MakeDir(string dirName) { try { bool b = RemoteFtpDirExists(dirName); if (b) { return true; } string url = FTPCONSTR + dirName; FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(url)); reqFtp.UseBinary = true; // reqFtp.KeepAlive = false; reqFtp.Method = WebRequestMethods.Ftp.MakeDirectory; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); FtpWebResponse response = (FtpWebResponse)reqFtp.GetResponse(); response.Close(); return true; } catch (Exception ex) { //errorinfo = string.Format("因{0},沒法下載", ex.Message); return false; } } /// <summary> /// 判斷ftp上的文件目錄是否存在 /// </summary> /// <param name="path"></param> /// <returns></returns> public static bool RemoteFtpDirExists(string path) { path = FTPCONSTR + path; FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(path)); reqFtp.UseBinary = true; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); reqFtp.Method = WebRequestMethods.Ftp.ListDirectory; FtpWebResponse resFtp = null; try { resFtp = (FtpWebResponse)reqFtp.GetResponse(); FtpStatusCode code = resFtp.StatusCode;//OpeningData resFtp.Close(); return true; } catch { if (resFtp != null) { resFtp.Close(); } return false; } } #endregion #region 從ftp服務器刪除文件的功能 /// <summary> /// 從ftp服務器刪除文件的功能 /// </summary> /// <param name="fileName"></param> /// <returns></returns> public static bool DeleteFile(string fileName) { try { string url = FTPCONSTR + fileName; FtpWebRequest reqFtp = (FtpWebRequest)FtpWebRequest.Create(new Uri(url)); reqFtp.UseBinary = true; reqFtp.KeepAlive = false; reqFtp.Method = WebRequestMethods.Ftp.DeleteFile; reqFtp.Credentials = new NetworkCredential(FTPUSERNAME, FTPPASSWORD); FtpWebResponse response = (FtpWebResponse)reqFtp.GetResponse(); response.Close(); return true; } catch (Exception ex) { //errorinfo = string.Format("因{0},沒法下載", ex.Message); return false; } } #endregion } }
這是從FTP文件上傳、下載、新建目錄以及刪除文件的一個類,應該有用的到的地放。關於ftp的配置,若是你們有疑問的話能夠去網上查查,若是後期我有時間的話我也會寫一寫。ui