Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getNtStatus (0.17 sec)

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

                if ( r.getStatus() == NtStatus.NT_STATUS_NO_MORE_FILES ) {
                    return false;
                }
                this.response = r;
            }
            catch ( SmbException e ) {
                if ( e.getNtStatus() == NtStatus.NT_STATUS_NO_MORE_FILES ) {
                    log.debug("End of listing", e);
                    return false;
                }
                throw e;
            }
            return true;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 16:15:08 GMT 2020
    - 5.7K bytes
    - Viewed (0)
Back to top