- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isFileSystemPath (5.36 sec)
-
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 validateRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 9K bytes - Viewed (0) -
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)