System.out.println("comparing: " + a.getAbsolutePath());
System.out.println("\t" + "with: " + b.getAbsolutePath());
// identity.
if (a.getAbsolutePath().equals(b.getAbsolutePath()))
return false;
if (a.length() != b.length())
{
System.out.println("\t" + "lengths don't match");
return false;
}
boolean result = compareContents(a, b);
if (result)
System.out.println("\t" + "match!");
else
System.out.println("\t" + "contents don't match");
return result;