WebBox Klassenbibliothek
ulrich
2017-03-17 6c2165fd4161fa592a59410728ae6310507fcd6b
WebBox-Verzeichnis
1 files modified
10 ■■■■ changed files
src/de/uhilger/wbx/WbxUtils.java 10 ●●●● patch | view | raw | blame | history
src/de/uhilger/wbx/WbxUtils.java
@@ -52,12 +52,18 @@
   * @return Verzeichnis 'daten' der WebBox
   */
  public static File getWbxDataDir(ServletContext ctx) {
    File file = getWbxDir(ctx);
    file = new File(file, "daten/");
    logger.fine("WebBox Datenbasis: " + file.getAbsolutePath());
    return file;
  }
  public static File getWbxDir(ServletContext ctx) {
    String path = ctx.getRealPath("/");
    logger.fine("getRealPath: " + path); // file-cms in webapps
    File file = new File(path);
    file = file.getParentFile().getParentFile().getParentFile().getParentFile();    
    file = new File(file, "daten/");
    logger.fine("Basis: " + file.getAbsolutePath());
    logger.fine("WebBox: " + file.getAbsolutePath());
    return file;
  }