Is there a way to compare two text files and show the diff if they are not identical in dunit?

The easy start is to read them to TStringList, however the code for comparing two text file is much more complicated, and the gui in the DUnitGui is not sufficient for this.

Any idea? suggestion?

link|improve this question

What about using GNU diff? – David Heffernan Mar 1 '11 at 10:34
1  
@TOndrej "Subversion has diff APIs" Really? I'd like to know more about that. – David Heffernan Mar 1 '11 at 10:41
2  
@David Heffernan: Subversion diff APIs: subversion.apache.org/docs/api/1.6/svn__diff_8h.html – TOndrej Mar 1 '11 at 10:44
1  
@David Heffernan: example usage: delphisvn.svn.sourceforge.net/viewvc/delphisvn/trunk/src/… – TOndrej Mar 1 '11 at 10:46
1  
@TOndrej Thanks. I'm actually looking to put a very simple diff engine into my program. This might be useful. – David Heffernan Mar 1 '11 at 10:47
show 5 more comments
feedback

1 Answer

up vote 8 down vote accepted

There is a nice little unit that comes with some examples called TDiff, this is available from http://angusj.com/delphi/ and will allow you to compare 2 files and see the differences, it also allows for merging.

It is a very simple Utility that you can download the entire source for.

link|improve this answer
np problem, and a pdf included! nice. – none Mar 1 '11 at 12:40
feedback

Your Answer

 
or
required, but never shown

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