Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FileExists (0.14 sec)

  1. src/main/webapp/WEB-INF/fe.tld

      <function>
        <description>
          Check if a file exists.
        </description>
        <name>fileExists</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>boolean fileExists(java.lang.String)</function-signature>
        <example>
          ${fe:fileExists(path)}
        </example>
      </function>
    
      <function>
        <description>Calculates URL.</description>
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu May 28 07:49:35 GMT 2020
    - 10K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            if (value == null) {
                return StringUtil.EMPTY;
            }
            return Base64.getUrlEncoder().encodeToString(value.getBytes(Constants.CHARSET_UTF_8));
        }
    
        public static boolean fileExists(final String path) {
            final File file = new File(LaServletContextUtil.getServletContext().getRealPath(path));
            return file.exists();
        }
    
        public static String url(final String input) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    							<em class='fa fa-genderless nav-icon'>
    							<p><la:message key="labels.menu_maintenance" /></p>
    						</a></li></c:if>
    
    				</ul></li></c:if>
    
    			<c:if test="${fe:fileExists('/WEB-INF/view/common/admin/sidebar_extra.jsp')}">
    				<c:import url="/WEB-INF/view/common/admin/sidebar_extra.jsp" />
    			</c:if>
    		</ul>
    		</nav>
    	</div>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 15 20:55:28 GMT 2021
    - 17.8K bytes
    - Viewed (0)
Back to top