Incremental Backup (Patch file ge)using Delta Encoding in 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!