Search code examples
comparison

What is the best way to compare 2 folder trees on windows?


I'm moving a repository from sourcesafe to subversion and I need to ensure that vital points are equal. Is it any existing command / tool for windows that allows me to compare two folder trees that they are equal (has equal folder structure and files of same content)? The ideal will be something command-line like:

some_cool_compare c:\current_vss c:\current_svn -exclude .svn;*.vspscc;*.scc

Is it some tool / command exist or I need to write a script of my own?


Solution

  • If you can use a GUI tool, the best I tried is WinMerge - open source.

    If not, then diff is your friend.