1. 程式人生 > >Ftp操作類

Ftp操作類

sts XML cep 內存 pwd linq mem .com put

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;

namespace Solution.Common
{

    public class FtpHelper
    {
        private FtpHelper()
        {

        }

        private static FtpHelper _instance;

        
private static readonly object obj = new object(); //懶漢式,雙重檢查鎖定 public static FtpHelper GetInstance() { if (_instance == null) { lock (obj) { if (_instance == null) { _instance
= new FtpHelper(); } } } return _instance; } /// <summary> /// 將生成的內存流上傳到Ftp服務器,並生成文件 /// </summary> /// <param name="ms">待上傳的文件內存流</param> /// <param name="userid">ftp賬號</param>
/// <param name="pwd">ftp密碼</param> /// <param name="filename">待生成文件的名稱</param> /// <param name="ftpPath">文件在ftp存放的路徑</param> /// <param name="msg">返回的消息</param> /// <returns></returns> public bool Upload(MemoryStream ms, string userid, string pwd, string filename, string ftpPath, out string msg) { bool isSuccess = false; try { StreamWriter data_writer = new StreamWriter(ms);//為指定的文件流生成StreamWriter實例 FtpWebRequest ftp = (FtpWebRequest)FtpWebRequest.Create(new Uri(ftpPath + filename)); ftp.Credentials = new NetworkCredential(userid, pwd);//為指定的文件名稱和密碼 ftp.KeepAlive = false; //指定執行命令 ftp.Method = WebRequestMethods.Ftp.UploadFile; //指定數據傳輸類型 ftp.UseBinary = true; //15秒超時 ftp.Timeout = 15000; using (Stream ftp_stream = ftp.GetRequestStream()) { //指向內存流頭 ms.Position = 0; ms.CopyTo(ftp_stream); data_writer.Close(); ms.Close(); ftp_stream.Close(); } msg = "上傳成功"; isSuccess = true; } catch (Exception ex) { msg = ex.Message; isSuccess = false; } return isSuccess; } /// <summary> /// 刪除ftp服務器中的文件 /// </summary> /// <param name="userId">ftp賬號</param> /// <param name="pwd">ftp密碼</param> /// <param name="ftpPath">ftp中文件的路徑</param> /// <param name="fileName">文件名稱</param> public bool Delete(string userId, string pwd, string ftpPath, string fileName) { FtpWebRequest reqFTP; try { reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(ftpPath + fileName)); reqFTP.Method = WebRequestMethods.Ftp.DeleteFile; reqFTP.UseBinary = true; reqFTP.Credentials = new NetworkCredential(userId, pwd); reqFTP.UsePassive = false; FtpWebResponse listResponse = (FtpWebResponse)reqFTP.GetResponse(); listResponse.Close(); return true; //string sStatus = listResponse.StatusDescription; } catch (Exception ex) { return false; } } ///下載文件 //userId:ftp賬號,pwd:ftp密碼,filename:文件名(類似E:\DBCenter\text.xml),ftpPath:ftp路徑,Msg:輸出信息 public bool Download(string userId, string pwd, string ftpPath, string filePath, string fileName, out string Msg) { bool isSuccess = false; Msg = string.Empty; FtpWebRequest reqFTP; FtpWebRequest reqFTP1; try { FileStream outputStream = new FileStream(filePath + "\\" + fileName, FileMode.Create); reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(ftpPath + fileName)); reqFTP.Method = WebRequestMethods.Ftp.GetFileSize; reqFTP.UseBinary = true; reqFTP.Credentials = new NetworkCredential(userId, pwd); reqFTP.UsePassive = true; FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse(); long cl = response.ContentLength; response.Close(); if (cl > 0) { reqFTP1 = (FtpWebRequest)FtpWebRequest.Create(new Uri(ftpPath + fileName)); reqFTP1.Method = WebRequestMethods.Ftp.DownloadFile; reqFTP1.UseBinary = true; reqFTP1.Credentials = new NetworkCredential(userId, pwd); reqFTP1.UsePassive = true; int bufferSize = 2048; int readCount; byte[] buffer = new byte[bufferSize]; FtpWebResponse response1 = (FtpWebResponse)reqFTP1.GetResponse(); Stream ftpStream = response1.GetResponseStream(); readCount = ftpStream.Read(buffer, 0, bufferSize); while (readCount > 0) { outputStream.Write(buffer, 0, readCount); readCount = ftpStream.Read(buffer, 0, bufferSize); isSuccess = true; } ftpStream.Close(); outputStream.Close(); response1.Close(); } } catch(Exception ex) { isSuccess = false; Msg = "程序出現異常:" + ex.Message; } return isSuccess; } } }

Ftp操作類