Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNativeFileSystem (3.2 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java

            return this.service;
        }
    
        /**
         * Returns the native file system type of the connected share.
         *
         * @return the nativeFileSystem
         */
        public final String getNativeFileSystem() {
            return this.nativeFileSystem;
        }
    
        /**
         * Indicates whether the share supports search operations with search bits.
         *
         * @return the supportSearchBits
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/TreeConnectResponseTest.java

            void testGetNativeFileSystem() throws Exception {
                // Given
                setPrivateField(response, "nativeFileSystem", "NTFS");
    
                // When
                String fs = response.getNativeFileSystem();
    
                // Then
                assertEquals("NTFS", fs, "Should return the native file system");
            }
    
            @Test
            @DisplayName("Should indicate DFS support")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top