Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for isFileSystemPath (0.06 seconds)

  1. src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java

            assertTrue(protocolHelper.isFileSystemPath("smb://server/share"));
            assertTrue(protocolHelper.isFileSystemPath("smb1://server/share"));
            assertTrue(protocolHelper.isFileSystemPath("ftp://ftp.example.com/file"));
            assertTrue(protocolHelper.isFileSystemPath("storage://container/blob"));
            assertTrue(protocolHelper.isFileSystemPath("s3://bucket/path"));
            assertTrue(protocolHelper.isFileSystemPath("gcs://bucket/path"));
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 35.1K bytes
    - Click Count (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:")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 13:59:25 GMT 2026
    - 12.4K bytes
    - Click Count (1)
Back to Top