vote up 0 vote down star

Hi,

I have 2 source trees, one is very similar to the other (one is VC6 and one is VS2005). I need a program that can recursively diff the source trees and tell me which files are different.

However I want to be able to define 'how different' the files are. So I want to be able to ignore all files that are less than 5% different. I'd also like to be able to vary the difference threshold.

Does anyone know of such a tool?

Cheers Rich

flag

62% accept rate
In the end I manually went through each and every file using Beyond Compare. – Rich Apr 3 at 16:05

4 Answers

vote up 0 vote down check

You could try Beyond Compare. I've found this very flexible in the past.

link|flag
vote up 0 vote down

I don't think you can get a packaged solution to do exactly what you want, but you can use two different approach to solve the problem.

Scripting:

Run diffstat on the two tree, then use a small shell script to extract the filenames that have more of 5% difference and then use a full diff on those files.

WinMerge and your eyes.

WinMerge is quite good and flexible (and free) for this, but I doubt that you can teach him to do the 5% thing. Still, you can see a recursive difference between two directories and you can teach him to ignore lines with RegExp.

link|flag
vote up 0 vote down

The cross platform Eclipse editor has a good diff functionality. You can select any two folders and performance recursive diff, traverse through each of the change and merge if you want.

However it does have the "how different" functionality you ask for. For "how different" feature one option would be diffstat as ashawley said. You can install cygwin and run diffstat on cygwin.

link|flag
vote up 1 vote down

I think the Linux kernel hackers use diffstat, IIRC.

link|flag
thanks, any idea for a windows solution? – Rich Mar 26 at 9:39
You can find a windows version of diffstat on cygwin. – Bluebird75 Mar 26 at 16:34

Your Answer

Get an OpenID
or

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