程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 基於.Net的文件增量備份系統實現,.net增量備份實現

基於.Net的文件增量備份系統實現,.net增量備份實現

編輯:C#入門知識

基於.Net的文件增量備份系統實現,.net增量備份實現


  .Net中提供了許多方便使用的方法,包括在處理文件中查找文件、拷貝文件等,今天實現的是通過簡易的程序實現增量的備份文件。

  首先需要的是選擇備份源文件路徑SourcePath和備份目標文件路徑DestinationPath,然後通過StopWatch統計拷貝所耗費的時間。(注意:使用StopWatch需要添加 using System.Diagnostics命名空間,對文件的讀寫需要添加 using System.IO命名空間)。

/// <summary>
/// 增量備份函數方法
/// </summary>
/// <param name="SourcePath">備份源文件路徑</param>
/// <param name="DestinationPath">備份目標文件路徑</param>
public void CopyDirectory(String SourcePath, String DestinationPath){
   Stopwatch watch = new Stopwatch();
   watch.Start();      //開始計算時間
   // 檢查目標目錄是否以目錄分割字符結束如果不是則添加
   if (DestinationPath[DestinationPath.Length - 1] != Path.DirectorySeparatorChar)
   {
      DestinationPath += Path.DirectorySeparatorChar;
   }
   //判斷目標目錄是否存在如果不存在則新建
   if (!Directory.Exists( DestinationPath))
    {
      Directory.CreateDirectory(DestinationPath);
    }
    // 得到源目錄的文件列表,該裡面是包含文件以及目錄路徑的一個數組
    string[] fileList = Directory.GetFileSystemEntries(SourcePath);
    // 遍歷所有的文件和目錄
    foreach (string SourceFilename in fileList)
     {
       string filename = Path.GetFileName(SourceFilename);
          //先判斷文件在目標文件夾中是否存在
          if (File.Exists(DestinationPath + filename))
           {
              FileInfo oldFile = new FileInfo(SourceFilename);
              FileInfo newFile = new FileInfo(DestinationPath + filename);
              if (oldFile.LastWriteTime == newFile.LastWriteTime) 
                {
                   continue;          //跳出本次循環
                }
             }
else { // 先當作目錄處理如果存在這個目錄就遞歸Copy該目錄下面的文件 if (Directory.Exists(SourceFilename)) { CopyDirectory(SourceFilename, DestinationPath + filename); }// 否則直接Copy文件 else { File.Copy(SourceFilename, DestinationPath + filename, true);
} } } watch.Stop(); //時間停止
MessageBox.Show("備份完成  耗時"+watch.Elapsed+""); //顯示所消耗的時間 }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved