Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getImagePath (0.07 sec)

  1. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

                        } else if ("images".equals(names[0])) {
                            names[0] = themeName;
                            final Path path = ResourceUtil.getImagePath(names);
                            Files.createDirectories(path.getParent());
                            Files.copy(zis, path, StandardCopyOption.REPLACE_EXISTING);
                        }
                    }
                }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        }
    
        public static Path getProjectPropertiesFile() {
            return getPath("WEB-INF/", StringUtil.EMPTY, "project.properties");
        }
    
        public static Path getImagePath(final String... names) {
            return getPath(StringUtil.EMPTY, "images", names);
        }
    
        public static Path getCssPath(final String... names) {
            return getPath(StringUtil.EMPTY, "css", names);
        }
    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