vote up 1 vote down star
2

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!

flag

68% 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 at 8:06
I agree; however I'd still be interested to learn how this is done. – Mark B Oct 7 at 8:11
A customer wondered whether we can do this. Which means develop it yourself of course. – Alex Oct 7 at 22:01

4 Answers

vote up -1 vote down

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|flag
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 B Oct 7 at 8:13
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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

An O(ND) Difference Algorithm for C#

link|flag

Your Answer

Get an OpenID
or

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