i have two root directories:

  • C:\sourcecode1
  • C:\sourceCode2

they are cuts of a source code tree at 2 different points in time (that was never stored in source control :( )

i need a tool that will show me:

  1. Files in one but not the other (both ways)
  2. Allow me to diff files that are in both directories but have changed
  3. There are certain subfolders that i would like to ignore if possible

They both have deep directory structures. I was originally concerned with different directory structures in the different folders but fortunately the directory structures look the same so its just added/deleted and changed files i need to compare

What is the best tool for something like this?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Beyond Compare will do this, and is reasonably priced. (Since your paths have drive letters, I'm suggesting a Windows solution - when you're asking for a software solution, you really should specify in your tags which OS you're using.)

link|improve this answer
Beyond compare is really great, it performs its tasks correctly, includes lots of features, and the price is really right. Just a happy user. – AlfonsoML Mar 13 '11 at 18:54
feedback

There are several tools that can do it, including:

link|improve this answer
feedback

Your question has two parts:

1) differences across directory structures 2) very good source code difference tool

For the first part, you want a tool that will crawl directories and show you which files are different. The answers here, and many answers to Best Diff Tool? provide lots of good suggestions for this.

For the second part, you might consider what it means to compare the source files. If you want the most precise differences between individual files in terms of programming language constructs, you might consider our Smart Differencer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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