- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getThumbnailPath (0.07 sec)
-
src/main/java/org/codelibs/fess/util/ResourceUtil.java
return getPath("WEB-INF/", "view", names); } public static Path getDictionaryPath(final String... names) { return getPath("WEB-INF/", "dict", names); } public static Path getThumbnailPath(final String... names) { return getPath("WEB-INF/", "thumbnails", names); } public static Path getSitePath(final String... names) { return getPath("WEB-INF/", "site", 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) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
if (varPath != null) { baseDir = new File(varPath, THUMBNAILS_DIR_NAME); } else { baseDir = ResourceUtil.getThumbnailPath().toFile(); } } if (baseDir.mkdirs()) { logger.info("Created: {}", baseDir.getAbsolutePath()); } if (!baseDir.isDirectory()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 21.5K bytes - Viewed (0)