Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getConfPath (0.07 sec)

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

                if (StringUtil.isNotBlank(confPath)) {
                    return OptionalEntity.of(confPath);
                }
            }
            return OptionalEntity.empty();
        }
    
        public static Path getConfPath(final String... names) {
            if (FESS_APP_DOCKER.equalsIgnoreCase(getAppType())) {
                final Path confPath = Paths.get("/opt/fess", names);
                if (Files.exists(confPath)) {
                    return confPath;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 08:52:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top