DiffDir

I just did a small java program to compare two directories.
I did it, because I really miss that "diff -rq" under Win-XP.
But it works fine.
A leading "-" marks files that are in dir1, but not dir2.
A leading "+" marks files that are missed in dir1 instead.

Here is the <source code>

compile it with
> java DiffDir.java

use it with
> java -cp . DiffDir <dir1> <dir2>

Hafe fun,

RST