Dateiverwaltung für die WebBox
ulrich
2021-01-28 81abd5a101a52f7ca9c803af879815dacae028b1
src/java/de/uhilger/filecms/data/FileRef.java
@@ -41,7 +41,7 @@
   private Boolean isHidden;
   private Long lastModified;
   private Long length;
  private String mimetype;
  private String mimetype = "text";
   /**
    * create a new instance of <code>FileRef</code>. Note that the created FileRef is 
@@ -63,6 +63,9 @@
      this.isHidden = isHidden;
      this.lastModified = lastModified;
      this.length = length;
    if(isDirectory()) {
      this.mimetype = " ";
    }
   }
   
   /**
@@ -99,7 +102,9 @@
  }
  public void setMimetype(String mimetype) {
    this.mimetype = mimetype;
    if(mimetype != null && mimetype.length() > 1) {
      this.mimetype = mimetype;
    }
  }
   /**