Advertisement
riking

Hint: it's a stackoverflow

Mar 25th, 2013
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1.     private static boolean isParentFile0(File parent, File child) {
  2.         if (child == null) {
  3.             return false;
  4.         } else if (child == parent) {
  5.             return true;
  6.         } else {
  7.             return isParentFile0(parent, child);
  8.         }
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement