- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getThumbnailPath (0.07 sec)
-
src/main/java/org/codelibs/fess/util/ResourceUtil.java
* * @param names the path components to append to the thumbnails directory * @return the Path object pointing to the thumbnails directory */ public static Path getThumbnailPath(final String... names) { return getPath("WEB-INF/", "thumbnails", names); } /** * Gets the path to site-specific files directory. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
assertNotNull(dictPath); assertTrue(dictPath.toString().contains("dict")); } public void test_getThumbnailPath() { Path thumbPath = ResourceUtil.getThumbnailPath("thumb.png"); assertNotNull(thumbPath); assertTrue(thumbPath.toString().contains("thumbnails")); } public void test_getSitePath() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.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 Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0)