C#遞歸拷貝文件夾下文件以及文件夾

来源:https://www.cnblogs.com/DiKingVue/archive/2019/08/06/11311783.html
-Advertisement-
Play Games

演示用遞歸的方法複製指定文件夾下所有文件(包括子文件夾)到指定位置,涉及位元組流讀取寫入位元組操作 ...


演示用遞歸的方法複製指定文件夾下所有文件(包括子文件夾)到指定位置,比較簡單,主要是遞歸調用,以及位元組流讀取寫入位元組操作。直接上代碼!

界面設計(WPF設計)

 1 <Window x:Class="LDDECryption.MainWindow"
 2         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 3         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 4         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
 5         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 6         xmlns:local="clr-namespace:LDDECryption"
 7         mc:Ignorable="d"
 8         Title="MainWindow" Height="200" Width="600">
 9     <Grid>
10         <Grid.RowDefinitions>
11             <RowDefinition/>
12             <RowDefinition/>
13             <RowDefinition Height="auto"/>
14         </Grid.RowDefinitions>
15         <DockPanel Grid.Row="0" VerticalAlignment="Center">
16             <TextBlock Text="源路徑"/>
17             <Button Content="..." Name="btnSourceUrl" DockPanel.Dock="Right" Width="60" Click="BtnSourceUrl_Click"/>
18             <TextBox Name="txtSourceUrl"/>
19         </DockPanel>
20         <DockPanel Grid.Row="1" VerticalAlignment="Center">
21             <TextBlock Text="目的路徑"/>
22             <Button Content="..." Name="btnDesUrl" DockPanel.Dock="Right" Width="60" Click="BtnDesUrl_Click"/>
23             <TextBox Name="txtDesUrl"/>
24         </DockPanel>
25         <DockPanel Grid.Row="3">
26             <Button Content="確定" Name="btnOk" Width="60" Click="BtnOk_Click"/>
27         </DockPanel>
28     </Grid>
29 </Window>

後臺代碼

  1 using Microsoft.Win32;
  2 using System;
  3 using System.Collections.Generic;
  4 using System.IO;
  5 using System.Linq;
  6 using System.Text;
  7 using System.Threading.Tasks;
  8 using System.Windows;
  9 using System.Windows.Controls;
 10 using System.Windows.Data;
 11 using System.Windows.Documents;
 12 using System.Windows.Forms;
 13 using System.Windows.Input;
 14 using System.Windows.Media;
 15 using System.Windows.Media.Imaging;
 16 using System.Windows.Navigation;
 17 using System.Windows.Shapes;
 18 
 19 namespace LDDECryption
 20 {
 21     /// <summary>
 22     /// MainWindow.xaml 的交互邏輯
 23     /// </summary>
 24     public partial class MainWindow : Window
 25     {
 26         public MainWindow()
 27         {
 28             InitializeComponent();
 29         }
 30 
 31         private void BtnSourceUrl_Click(object sender, RoutedEventArgs e)
 32         {
 33             //OpenFileDialog openFileDialog = new OpenFileDialog();
 34             //openFileDialog.ShowDialog();
 35             FolderBrowserDialog folderBrowser = new FolderBrowserDialog();
 36             folderBrowser.Description = "選擇源路徑";
 37             folderBrowser.ShowNewFolderButton = false;
 38             folderBrowser.RootFolder = Environment.SpecialFolder.MyComputer;
 39             if (folderBrowser.ShowDialog() == System.Windows.Forms.DialogResult.OK)
 40             {
 41                 this.txtSourceUrl.Text = folderBrowser.SelectedPath;
 42             }
 43         }
 44 
 45         private void BtnDesUrl_Click(object sender, RoutedEventArgs e)
 46         {
 47             FolderBrowserDialog folderBrowser = new FolderBrowserDialog();
 48             folderBrowser.Description = "選擇目的路徑";
 49             folderBrowser.ShowNewFolderButton = true;
 50             folderBrowser.RootFolder = Environment.SpecialFolder.MyComputer;
 51             if (folderBrowser.ShowDialog() == System.Windows.Forms.DialogResult.OK)
 52             {
 53                 this.txtDesUrl.Text = folderBrowser.SelectedPath;
 54             }
 55         }
 56 
 57         private void BtnOk_Click(object sender, RoutedEventArgs e)
 58         {
 59             var sour = this.txtSourceUrl.Text.Trim();
 60             if (!Directory.Exists(sour))
 61             {
 62                 System.Windows.MessageBox.Show("源路徑不存在");
 63                 return;
 64             }
 65             var des = txtDesUrl.Text.Trim();
 66             if (!Directory.Exists(des))
 67             {
 68                 Directory.CreateDirectory(des);
 69             }
 70             DescryptionCopy(sour, des);
 71             System.Windows.MessageBox.Show("OK!", "", MessageBoxButton.OK);
 72         }
 73 
 74         /// <summary>
 75         /// 複製文件夾==遞歸方法
 76         /// </summary>
 77         /// <param name="strSource">源文件夾</param>
 78         /// <param name="strDes">目標文件夾</param>
 79         private void DescryptionCopy(string strSource, string strDes)
 80         {
 81             if (!Directory.Exists(strSource))
 82             {
 83                 return;
 84             }
 85             //
 86             var strDesNew = System.IO.Path.Combine(strDes, System.IO.Path.GetFileName(strSource));
 87             if (!Directory.Exists(strDesNew))
 88             {
 89                 Directory.CreateDirectory(strDesNew);
 90             }
 91             var fileList = Directory.GetFileSystemEntries(strSource);
 92             if (fileList == null || fileList.Length == 0)
 93             {
 94                 return;
 95             }
 96             for (int i = 0; i < fileList.Length; i++)
 97             {
 98                 var file = fileList[i];
 99                 if (Directory.Exists(file))
100                 {
101                     var des = System.IO.Path.Combine(strDesNew, System.IO.Path.GetFileName(file));
102                     DescryptionCopy(file, strDesNew);
103                 }
104                 else
105                 {
106                     var des = System.IO.Path.Combine(strDesNew, System.IO.Path.GetFileName(file));
107                     FileCopy(file, des);
108                 }
109             }
110         }
111 
112         /// <summary>
113         /// 文件拷貝
114         /// </summary>
115         /// <param name="fileSource"></param>
116         /// <param name="fileDestination"></param>
117         private void FileCopy(string fileSource, string fileDestination)
118         {
119             FileStream readStream = new FileStream(fileSource, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
120             var buff = new Byte[1024 * 1024 * 10];//10M
121             FileStream writStream = new FileStream(fileDestination, FileMode.OpenOrCreate, FileAccess.Write, FileShare.Read);
122             //
123             int off;
124             do
125             {
126                 off = readStream.Read(buff, 0, buff.Length);
127                 writStream.Write(buff, 0, off);
128             } while (off > 0);
129             readStream.Close();
130             writStream.Flush();
131             writStream.Close();
132         }
133 
134     }
135 }

//

System.IO.File.Copy(file, path, true);此方法即可複製指定文件到指定目錄。

 


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

-Advertisement-
Play Games
更多相關文章
  • 目錄 [隱藏] 0.1 前言: 0.2 界面 0.3 Maven 環境 0.4 項目結構 0.5 整合 Hibernate 0.5.1 SQLiteDialect.java 資料庫方言代碼 0.5.2 hibernate.cfg.xml Hibernate配置文件 0.6 項目初始化連接資料庫自動建 ...
  • 面向對象 Go語言開發者認為:面向對象就是特定類型(結構體)有著自己的方法,利用這個方法完成面向對象編程, 並沒有提封裝、繼承、多態。所以Go語言進行面向對象編程時,重點在於靈活使用方法。 Go語言有著自己對面向對象的理解,它也有著自己的封裝、繼承、多態。 5.1.封裝 實例 5.2.繼承 5.3. ...
  • 作者:黃小斜 來源:http://suo.im/5eJuQZ 我來阿裡,已經幾個月了。這段時間,最大的感受就是累。我是在今年的三月份加入阿裡的。 當初我沒有參加阿裡巴巴的實習,而是選擇了直接進行校園招聘,這也是因為當時我對實習的部門不感興趣,於是在校招的時候我就選擇了自己感興趣的部門,也就是現在我所 ...
  • Windows系統下同時安裝Python2和Python3 說明 有時由於工作需求我們需要在Python2版本下麵進行一些開發,有時又需要Python3以上的版本,那麼我們怎麼在一臺電腦上同時安裝多個Python版本呢? 下載 兩個版本的Python可以在官網上下載:https://www.pyth ...
  • remove() 函數用於移除列表中某個值的第一個匹配項。 remove()方法語法: list.remove(obj) 如果obj不在列表中會引發 ValueError 錯誤,通常先使用count方法查看有多少個obj pop() 函數用於移除列表中的一個元素(預設最後一個元素),並且返回該元素的 ...
  • 引言 在微信公眾號的開發中,自動回覆關鍵詞主要可回覆的內容為文本消息、圖文消息(目前僅支持一個鏈接)。為了讓關鍵詞支持“ 帶參數 ” 和 無限擴展 ,本文引入一個對接關鍵詞的介面規範,使得關鍵詞可以攜參數一起交由第三方處理,並返回用戶文本消息或圖文消息。 基本原理:為關鍵詞配置回調地址,關鍵詞與參數 ...
  • 資料庫基礎 資料庫系統的組成:由資料庫,資料庫管理軟體,資料庫管理員DBA,支持資料庫系統的硬體和軟體組成,其中資料庫管理員是對資料庫進行規劃、設計、維護、和監視的專業管理人員,在資料庫系統中起著非常重要的作用 資料庫系統的三級模式解構分為: 內模式(唯一):主要描述資料庫系統的物理結構和儲存方式, ...
  • GAC 全稱是 Global Assembly Cache 作用是可以存放一些有很多程式都要用到的公共 Assembly ,例如 System.Data 、System.Windows.Form 等等。這樣,很多程式就可以從GAC 裡面取得 Assembly ,而不需要再把所有要 用到的 Assem ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...