Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fileExists (1.6 sec)

  1. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

         *
         * @param path the file path relative to the servlet context
         * @return true if the file exists, false otherwise
         */
        public static boolean fileExists(final String path) {
            final File file = new File(LaServletContextUtil.getServletContext().getRealPath(path));
            return file.exists();
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 25.4K bytes
    - Viewed (1)
Back to top