Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isFileSystemPath (5.36 sec)

  1. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

         *
         * @param url the URL to check
         * @return true if the URL is a file system path, false otherwise
         */
        protected boolean isFileSystemPath(final String url) {
            return ComponentUtil.getProtocolHelper().isFileSystemPath(url);
        }
    
        /**
         * Validates if the URL is safe for redirection.
         *
         * @param url the URL to validate
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

         *
         * @param url the URL to check
         * @return true if the URL is a file system path (file, smb, smb1, ftp, storage, s3, gcs)
         */
        public boolean isFileSystemPath(final String url) {
            return url.startsWith("file:") || url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("ftp:")
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 12.4K bytes
    - Viewed (1)
Back to top