Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Files (0.14 sec)

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

         * identical to the list returned by the parameterless <code>listFiles()</code>
         * method minus files filtered by the specified filename filter.
         * 
         * If strict resource lifecycle is used, make sure you close the individual files after use.
         *
         * @param filter
         *            a filter to exclude files from the results
         * @return An array of <tt>SmbResource</tt> objects
         * @throws SmbException
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            boolean cont = false;
            switch ( resp.getErrorCode() ) {
            case NtStatus.NT_STATUS_OK:
            case NtStatus.NT_STATUS_NO_MORE_FILES:
                cont = true;
                break;
            case NtStatus.NT_STATUS_PENDING:
                // must be the last
                cont = false;
                break;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top