C#本地文件下載以及FTP文件服務下載(以Pdf文件為例)

来源:https://www.cnblogs.com/my1227/archive/2019/07/23/11232553.html
-Advertisement-
Play Games

一、C#實現本地文件下載 1、文件下載的路徑 文件名稱 以及文件下載之後要放的位置 這三個變數是必須要的 2、定義以下四個對象: FileWebRequest ftpWebRequest = null; FileWebResponse ftpWebResponse = null; Stream ft ...


一、C#實現本地文件下載

1、文件下載的路徑  文件名稱 以及文件下載之後要放的位置  這三個變數是必須要的

2、定義以下四個對象:

       FileWebRequest ftpWebRequest = null;
        FileWebResponse ftpWebResponse = null;
        Stream ftpResponseStream = null;
        FileStream outputStream = null;

3、創建文件下載存放位置的路徑(不需要手動創建,如果路徑存在就創建 不存在就不創建)

      Directory.CreateDirectory(LocalFolder);//創建文件夾名稱

     * 這裡提一點  Path.Combine()這個就是文件路徑拼接的函數,會自動判斷,在需要的文件加  \\  

    比如 string filePath=  Path.Combine(“D:”,“test”,"download");  //  filePath="D:\\test\download";

4、  然後執行以下代碼  即可完成文件下載

           ftpWebRequest = (FileWebRequest)FileWebRequest.Create(new Uri(uri));
            ftpWebRequest.Method = WebRequestMethods.Ftp.DownloadFile;
            ftpWebResponse = (FileWebResponse)ftpWebRequest.GetResponse();
            ftpResponseStream = ftpWebResponse.GetResponseStream();
            long contentLength = ftpWebResponse.ContentLength;
            int bufferSize = 2048;
            byte[] buffer = new byte[bufferSize];
            int readCount;
            readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
            while (readCount > 0)
            {
                outputStream.Write(buffer, 0, readCount);
                readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
            }

5、代碼寫完之後要思考,下載文件的時候如何出現異常  這時在整個代碼加個 Try{} catch{}

具體代碼如下:

     public static void Main(string[] args)
        {
            TestFile tf = new TestFile();
            tf.fileDownload("D:/testFile/", "下載ftp文件.txt", "C:/Users/17/Desktop/文件", "下載ftp文件.txt", DateTime.Now.ToShortDateString());
        }

      /// <summary>
        /// 下載文件
        /// </summary>
        /// <param name="localPath">本地文件地址(沒有文件名)</param>
        /// <param name="localFileName">本地文件名</param>
        /// <param name="ftpPath">下載的ftp的路徑</param>
        /// <param name="ftpFileName">下載的ftp的文件名</param>
        public bool fileDownload(string localPath, string localFileName, string ftpPath, string ftpFileName, string date)
        {
            bool success = false;
            //FtpWebResponse ftpWebResponse = null;
            FileWebRequest ftpWebRequest = null;
            FileWebResponse ftpWebResponse = null;
            Stream ftpResponseStream = null;
            FileStream outputStream = null;
            try
            {
                //string date = DateTime.Now.ToShortDateString().ToString();//獲取系統時間
                string date1 = date.Replace("/", "");//winods 中文件命名不能有 /   去掉指定字元串 /
                //localPath = localPath + date1 + "/";//拼接路徑

                localPath=Path.Combine(localPath,date1)
                Directory.CreateDirectory(localPath);//創建文件夾名稱
                outputStream = new FileStream(localPath + localFileName, FileMode.Create);//創建文件
                string uri = ftpRootURL + ftpPath + "/" + ftpFileName;//拼接目標文件路徑

                string uri= Path.Combine(ftpRootURL,ftpPath,ftpFileName);
                ftpWebRequest = (FileWebRequest)FileWebRequest.Create(new Uri(uri));              
                //ftpWebRequest1.UseBinary = true;
                ftpWebRequest.Method = WebRequestMethods.Ftp.DownloadFile;
                ftpWebResponse = (FileWebResponse)ftpWebRequest.GetResponse();
                ftpResponseStream = ftpWebResponse.GetResponseStream();
                long contentLength = ftpWebResponse.ContentLength;
                int bufferSize = 2048;
                byte[] buffer = new byte[bufferSize];
                int readCount;
                readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
                while (readCount > 0)
                {
                    outputStream.Write(buffer, 0, readCount);
                    readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
                }
                success = true;
            }
            catch (Exception e)
            {

                DirectoryInfo folder = new DirectoryInfo(localPath);
                StreamWriter log = new StreamWriter(localPath + "/" + DateTime.Now.ToShortDateString().ToString().Replace("/", "") + ".txt", true);
                log.WriteLine("發生異常時間:" + System.DateTime.Now.ToShortTimeString().ToString());
                log.WriteLine("發生異常信息:" + e.Message);
                log.WriteLine("發送異常對象:" + e.Source);
                log.WriteLine("調用堆棧:" + e.StackTrace.Trim());
                log.WriteLine("觸動方法:" + e.TargetSite);
                log.WriteLine("   " + e.HResult);
                log.WriteLine("數據對象" + e.Data);
                log.WriteLine("____________________________________________________________");
                log.WriteLine();
                log.Close();
                success = false;
            }
            finally
            {
                if (outputStream != null)
                {
                    outputStream.Close();
                }
                if (ftpResponseStream != null)
                {
                    ftpResponseStream.Close();
                }

                if (ftpWebResponse != null)
                {
                    ftpWebResponse.Close();
                }
            }
            return success;
        }

 

二、 FTP 服務文件下載

這個功能其實和本地文件下載一樣,只需要加幾點即可 

1、FTP服務的地址;

具體代碼如下

       private string ftpIP = "**********";

2、FTP文件服務的登錄賬號以及密碼

具體代碼如下
        private string ftpName = "*********";
        private string ftpPassword = "******";
        private string ftpRootURL = string.Empty;
        FtpWebRequest reqFTP;

3、獲取FTP服務上的文件名稱、FTP文件服務需要下載之後存放的路徑以及下載功能的實現

 FtpWebRequest ftpWebRequest = null;
            FtpWebResponse ftpWebResponse = null;
            Stream ftpResponseStream = null;
            FileStream outputStream = null;
            try
            {
                localFilePath = Path.Combine(localFilePath, ftpFileNameTime);
                Directory.CreateDirectory(localFilePath);//創建文件夾名稱
                outputStream = new FileStream(Path.Combine(localFilePath, fileName), FileMode.Create);
                string uri = Path.Combine(ftpRootURL, ftpIP, fileName);
                ftpWebRequest = (FtpWebRequest)FileWebRequest.Create(new Uri(uri));
                ftpWebRequest.Credentials = new NetworkCredential(ftpName, ftpPassword);//登錄ftp
                ftpWebRequest.UseBinary = true;
                ftpWebRequest.Method = WebRequestMethods.Ftp.DownloadFile;
                ftpWebResponse = (FtpWebResponse)ftpWebRequest.GetResponse();
                ftpResponseStream = ftpWebResponse.GetResponseStream();
                long contentLength = ftpWebResponse.ContentLength;
                int bufferSize = 2048;
                byte[] buffer = new byte[bufferSize];
                int readCount;
                readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
                while (readCount > 0)
                {
                    outputStream.Write(buffer, 0, readCount);
                    readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
                }
            }
            catch (Exception ex)
            {

                MessageBox.Show(ex.Message)
                /*MessageBox.Show(ex.Message + "是否下載日誌文件", "發送錯誤!", MessageBoxButtons.OKCancel);
                //點擊確定  就執行下載日誌文件,不然就不執行
                if (dr == DialogResult.OK)
                {
                    WriteLog log = new WriteLog();
                    log.Write_log(ex.Message);
                }*/
            }
            finally
            {
                if (outputStream != null)
                {
                    outputStream.Close();
                }
                if (ftpResponseStream != null)
                {
                    ftpResponseStream.Close();
                }

                if (ftpWebResponse != null)
                {
                    ftpWebResponse.Close();
                }
            }

 

5、具體代碼如下:

namespace FtpDownLoad
{
    public class ftpFileDownload
    {

        private string ftpIP = "*************";
        private string ftpName = "2*******";
        private string ftpPassword = "*********";
        private string ftpRootURL = string.Empty;
        FtpWebRequest reqFTP;

      public static void Main(string[] args)
        {

                 ftpFileDownload ftpDown = new ftpFileDownload();
                 ftpDown.GetFileList("D:\testFile","37.pdt","20190703");

       }

        /// <summary>
        /// 文件下載
        /// </summary>
        /// <param name="localFilePath">下載路徑</param>
        /// <param name="fileName">下載的名稱</param>
        /// <param name="ftpFilePath">FTP路徑</param>
        /// <param name="ftpFileNameTime">FTP文件的修改時間</param>

     public void FtpDownLoadFile(string localFilePath, string fileName, string ftpFileNameTime)
        {
            FtpWebRequest ftpWebRequest = null;
            FtpWebResponse ftpWebResponse = null;
            Stream ftpResponseStream = null;
            FileStream outputStream = null;
            try
            {
                localFilePath = Path.Combine(localFilePath, ftpFileNameTime);
                Directory.CreateDirectory(localFilePath);//創建文件夾名稱
                outputStream = new FileStream(Path.Combine(localFilePath, fileName), FileMode.Create);
                string uri = Path.Combine(ftpRootURL, ftpIP, fileName);
                ftpWebRequest = (FtpWebRequest)FileWebRequest.Create(new Uri(uri));
                ftpWebRequest.Credentials = new NetworkCredential(ftpName, ftpPassword);//登錄ftp
                ftpWebRequest.UseBinary = true;
                ftpWebRequest.Method = WebRequestMethods.Ftp.DownloadFile;
                ftpWebResponse = (FtpWebResponse)ftpWebRequest.GetResponse();
                ftpResponseStream = ftpWebResponse.GetResponseStream();
                long contentLength = ftpWebResponse.ContentLength;
                int bufferSize = 2048;
                byte[] buffer = new byte[bufferSize];
                int readCount;
                readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
                while (readCount > 0)
                {
                    outputStream.Write(buffer, 0, readCount);
                    readCount = ftpResponseStream.Read(buffer, 0, bufferSize);
                }
            }
            catch (Exception ex)
            {

               MessageBox.Show(ex.Message);
              /*  DialogResult dr = MessageBox.Show(ex.Message + "是否下載日誌文件", "發送錯誤!", MessageBoxButtons.OKCancel);
                //點擊確定  就執行下載日誌文件,不然就不執行
                if (dr == DialogResult.OK)
                {
                    WriteLog log = new WriteLog();
                    log.Write_log(ex.Message);
                }*/
            }
            finally
            {
                if (outputStream != null)
                {
                    outputStream.Close();
                }
                if (ftpResponseStream != null)
                {
                    ftpResponseStream.Close();
                }

                if (ftpWebResponse != null)
                {
                    ftpWebResponse.Close();
                }
            }
        }

如有疑問  可以往[email protected]發郵件,我會第一時間給你解答的

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、 cookie 1. 定義:保存在瀏覽器本地上的一組組鍵值對 2. 特點: 由伺服器讓瀏覽器進行設置的 瀏覽器保存在瀏覽器本地 下次訪問時自動攜帶 3. 應用: 登錄 保存瀏覽習慣 簡單的投票 4. 使用cookie的原因:因為HTTP是無狀態的,用cookie來保存狀態 5. 在django中 ...
  • 本文介紹的Java規則的說明分為3個主要級別,中級是平時開發用的比較多的級別,在今後將陸續寫出其他的規則。遵守了這些規則可以提高程式的效率、使代碼又更好的可讀性等。 一、在finally方法里關掉input或者output資源 方法體裡面定義了input或者output流的話,需要在finally里 ...
  • T1 足球聯賽 題目 【題目描述】 巴蜀中學新一季的足球聯賽開幕了。足球聯賽有n只球隊參賽,每賽季,每隻球隊要與其他球隊各賽兩場,主客各一場,贏一場得3分,輸一場不得分,平局兩隻隊伍各得一分。 英勇無畏的小鴻是機房的主力前鋒,她總能在關鍵時刻踢出一些匪夷所思的妙球。但是很可惜,她過早的燃燒完了她的職 ...
  • hhh 為年薪20萬加油ヾ(◍°∇°◍)ノ゙ 一、變數:(變數的命名規則:一般使用字母開頭,可以使用下劃線連接,以及數字) 正確的變數命名示範: (儘量使用容易理解什麼用途的詞語) a1 name_Li name2 錯誤的變數示例: 1a a=1 print(a) b='年薪百萬不是夢' print ...
  • 一個可以沉迷於技術的程式猿,wx加入加入技術群:fsx641385712 ...
  • import os def file_handler(backend_data,res=None,type='fetch'): # 查詢功能 if type == 'fetch': with open('test_new.txt','r') as read_f: ret = [] ... ...
  • 介紹 使用函數式編程來豐富面向對象編程的想法是陳舊的。將函數編程功能添加到面向對象的語言中會帶來面向對象編程設計的好處。 一些舊的和不太老的語言,具有函數式編程和麵向對象的編程: 例如,Smalltalk和Common Lisp。 最近是Python或Ruby。 面向對象編程中模擬的函數式編程技術 ...
  • 1.背景 由於歷史原因,筆者所在的公司原有的ES查詢驅動採用的是 PlainElastic.Net, 經過詢問原來是之前PlainElastic.Net在園子里文檔較多,上手比較容易,所以最初作者選用了該驅動,而發佈也由於歷史原因都部署在 windows 伺服器上,基於 .NET Framework ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...