Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DirFileEntryEnumIterator2 (0.53 sec)

  1. src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java

     * Provides efficient directory listing capabilities for SMB2/SMB3 protocol versions.
     *
     * @author mbechler
     *
     */
    public class DirFileEntryEnumIterator2 extends DirFileEntryEnumIteratorBase {
    
        private static final Logger log = LoggerFactory.getLogger(DirFileEntryEnumIterator2.class);
    
        private byte[] fileId;
        private Smb2QueryDirectoryResponse response;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. 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)
  3. 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