0

To find differences in files between two directory structures I usually run

diff -r dir1/ dir2/

I'm burdened with Windows - is there any way to do this easily Windows or should I just get Cygwin?

PinkElephantsOnParade
  • 6,452
  • 12
  • 53
  • 91

3 Answers3

1

I use a tool called FreeFileSync. As the name implies it's free :) It does a great job of visually comparing directories and does not move any files unless you tell it to sync.

It also has a portable version so you do not need to install it.

FreeFileSync

Ben
  • 2,771
  • 6
  • 33
  • 45
0

Beyond Compare does a pretty good job. It isn't free though (but it is nagware, if I recall).

You can use cygwin or mingw, but these are very slow compared to the unix variants, I believe due to the (possibly intentionally) crippled posix implementation on windows.

PaulProgrammer
  • 16,175
  • 4
  • 39
  • 56
0

if you have windiff you can try:

 windiff -T dir1 dir2

also, you can download the Gnu utils for windows to run to traditional Unix diff (with no Cygwin required)

http://unxutils.sourceforge.net/

Stanley
  • 1,421
  • 5
  • 19
  • 36