Dateiverwaltung fuer neon
ulrich
2024-11-20 031c6bfd7fed0739e89297a068571860b1f31280
src/de/uhilger/neon/fm/FileList.java
@@ -22,7 +22,7 @@
import de.uhilger.neon.FileServer;
import de.uhilger.neon.HttpHelper;
import de.uhilger.neon.HttpResponder;
import de.uhilger.fm.Lister;
import de.uhilger.fm.Catalog;
import java.io.IOException;
/**
@@ -34,7 +34,7 @@
  public void run(HttpExchange exchange) {
    try {
      super.run(exchange);
      init(exchange);
      HttpContext ctx = exchange.getHttpContext();
      String base = ctx.getAttributes().getOrDefault(FileServer.ATTR_FILE_BASE, "").toString();
      if(base.length() == 0) {
@@ -42,7 +42,7 @@
      } else {
        String fName = new HttpHelper().getFileName(exchange);
        if (fName.endsWith(FileServer.STR_SLASH)) { // Ordnerliste erzeugen
          String json = new Lister().liste(fName, ctx.getPath(), base);
          String json = new Catalog().list(fName, ctx.getPath(), base);
          if (null != json) {
            new HttpResponder().antwortSenden(exchange, HttpResponder.SC_OK, json);
          } else {