Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DirFileEntryEnumIterator2 (0.47 sec)

  1. src/test/java/jcifs/smb/DirFileEntryEnumIterator2Test.java

                    }
                }
                return null;
            }).when(tree).send(any(Request.class));
    
            // Act: create iterator and enumerate
            DirFileEntryEnumIterator2 it = new DirFileEntryEnumIterator2(tree, parent, wildcard, (ResourceNameFilter) null, 0);
    
            // Assert: first page
            assertTrue(it.hasNext(), "Iterator should have first element");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbEnumerationUtil.java

            }
    
            try (SmbTreeHandleImpl th = parent.ensureTreeConnected()) {
                if (th.isSMB2()) {
                    return new DirFileEntryAdapterIterator(parent, new DirFileEntryEnumIterator2(th, parent, wildcard, fnf, searchAttributes),
                            ff);
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top