.NET實現簡易的檔案增量備份程式

來源:互聯網
上載者:User
.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+""); //顯示所消耗的時間}



以上就是.NET實現簡易的檔案增量備份程式 的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.