Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private static boolean isParentFile0(File parent, File child) {
- if (child == null) {
- return false;
- } else if (child == parent) {
- return true;
- } else {
- return isParentFile0(parent, child);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement