.NET实现简易的文件增量备份程序


本文摘自PHP中文网,作者黄舟,侵删。

.Net中提供了许多方便使用的方法,包括在处理文件中查找文件、拷贝文件等,今天实现的是通过简易的程序实现增量的备份文件。

首先需要的是选择备份源文件路径SourcePath和备份目标文件路径DestinationPath,然后通过StopWatch统计拷贝所耗费的时间。(注意:使用StopWatch需要添加 using System.Diagnostics命名空间,对文件的读写需要添加 using System.IO命名空间)。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

/// <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实现简易的文件增量备份程序 的内容!

相关阅读 >>

c#编写windows服务程序的图文详解

使用c#操作windowad之的windows用户组

总结一些编码和设计原则实例

c#如何实现自动更新本地程序的实例分析

c#中.net框架的简介

关于c#视频教程的资源分享

c#中匿名委托以及lambda表达式的实例详解

.net是什么

.net core 和 .net .framework 相比哪个速度快?

极客学院c#视频教程的资料推荐

更多相关阅读请进入《.net》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...