up vote 2 down vote favorite
2
share [g+] share [fb]

I want to create my own incremental backup solution using C#. How can I obtain the difference between two files (version 1 and version 2 of ABC.TXT) and then update ABC.TXT version 1 with the difference? Would appreciate some hints! Thank you!

link|improve this question

65% accept rate
Any reason for writing your own rather than using tried-and-tested existing solutions? It's easy to get this sort of thing subtly wrong, and I assume you care about your data... – Jon Skeet Oct 7 '09 at 8:06
1  
I agree; however I'd still be interested to learn how this is done. – Mark Bell Oct 7 '09 at 8:11
A customer wondered whether we can do this. Which means develop it yourself of course. – Alex Oct 7 '09 at 22:01
feedback

4 Answers

up vote 1 down vote accepted

Here's something I just Googled, might be helpful as a starting point:

An O(ND) Difference Algorithm for C#

link|improve this answer
feedback

here are some articles to some diff algorithms explained in C#

Codeproject 1

Codeproject 2

Its not easy to get this algorithm right. I would suggest executing kdiff3 or some other good diffing tool in a background process rather than writing it yourself.

link|improve this answer
feedback

Do you really need incremental backup? Is there any reason why you can't just replace version 1 with version 2?

And as Jon pointed, probably you'd better use an already existing and tested backup solution.

link|improve this answer
feedback

I'm not sure as to how exactly you would replace the 'difference' text as that could get quite complex. But for the initial checking, you could compare the file sizes.

The link below might help you out:

http://dotnetperls.com/file-size

link|improve this answer
Alex is asking about incremental backup (just copying the parts of a file that have changed) - knowing the file sizes are different is not much help in this case. – Mark Bell Oct 7 '09 at 8:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.