Beispiel #1
0
 public String getAbsolutePath() {
   // 如果是根结点
   if (getURL() != null) {
     return getURL().getPath();
   }
   String parentAbsolutePath = getParent().getAbsolutePath();
   if (parentAbsolutePath.endsWith("/")) {
     return parentAbsolutePath + ftpFile.getName();
   } else {
     return parentAbsolutePath + "/" + ftpFile.getName();
   }
 }
Beispiel #2
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();
 }
Beispiel #3
0
  public long getSize() {
    if (getFileSize() > 0) {
      return getFileSize();
    } else if (isFolder()) {
      return 0;
    }

    setFileSize(ftpFile.getSize());
    return getFileSize();
  }
 public boolean accept(FTPFile paramFTPFile) {
   return (paramFTPFile != null) && (paramFTPFile.isDirectory());
 }
Beispiel #5
0
 public long getLastModifiedTime() {
   return ftpFile.getTimestamp().getTimeInMillis();
 }
Beispiel #6
0
 public boolean isFolder() {
   return !ftpFile.isFile();
 }
Beispiel #7
0
 public String getFileName() {
   if (fileName == null) {
     fileName = ftpFile.getName();
   }
   return fileName;
 }