Ejemplo n.º 1
0
 public boolean isSelfOrDescendent(File file) {
   if (file.getAbsolutePath().equals(getAbsolutePath())) {
     return true;
   }
   return file.getAbsolutePath().startsWith(getAbsolutePath() + File.separatorChar);
 }
Ejemplo n.º 2
0
 public void createLink(File target) {
   createLink(target.getAbsolutePath());
 }