本文介绍了使用C#中的增量编码进行增量备份的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在做一个小型备份工具。这个备份应该是增量的。假设我有2个文件,那么我的备份目标必须只包含这两个文件的差异(补丁文件生成)。我用Google搜索了搜索方法!我找到了Delta编码。但我不知道如何实现它。?



请有人建议任何想法来实现这一点..并建议任何样本C#代码!



谢谢!

I'm doing a small backup utility.This backup should be incremental. Suppose I have 2 files, then my backup destination must contain differences of those two files only (Patch file generation). I googled it to search the ways to do this! I found "Delta encoding". But I don't have idea about how to implement that.?

Please anyone suggest any ideas to accomplish this.. And suggest any sample C# code also!

Thank you!

推荐答案


这篇关于使用C#中的增量编码进行增量备份的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-17 20:08