Пример #1
0
 public String getPath() {
   // 如果没有计算过
   if (path == null) {
     // 如果有父亲
     if (getParent() != null) {
       super.setPath(getParent().getPath() + "/" + getFileName());
     } else {
       if (ftpFile.isDirectory()) {
         return "";
       } else {
         return "/" + ftpFile.getName();
       }
     }
   }
   return getPath();
 }
 public boolean accept(FTPFile paramFTPFile) {
   return (paramFTPFile != null) && (paramFTPFile.isDirectory());
 }