Package org.olat.core.commons.controllers.linkchooser

Examples of org.olat.core.commons.controllers.linkchooser.SuffixFilter


      if (dirName.endsWith(".zip")) return false; // direct the import to the
                                                  // unzip step first
      // check for at least the index page file and the corresponding property
      // file
      String[] suffixes = { WikiManager.WIKI_FILE_SUFFIX, WikiManager.WIKI_PROPERTIES_SUFFIX };
      File[] files = directory.listFiles(new SuffixFilter(suffixes));
      if (files == null) {
        return false;
      }
      boolean indexAvailable = false;
      boolean indexPropAvailable = false;
View Full Code Here

TOP

Related Classes of org.olat.core.commons.controllers.linkchooser.SuffixFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.