Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doShareEnum (0.32 sec)

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

            if ( resp.getStatus() != WinError.ERROR_SUCCESS )
                throw new SmbException(resp.getStatus(), true);
    
            return resp.getResults();
        }
    
    
        static CloseableIterator<SmbResource> doShareEnum ( SmbFile parent, String wildcard, int searchAttributes, ResourceNameFilter fnf,
                ResourceFilter ff ) throws CIFSException {
            // clone the locator so that the address index is not modified
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

                if (hostlen == 0 || getType() == TYPE_WORKGROUP) {
                    doNetServerEnum(list, files, wildcard, searchAttributes, fnf, ff);
                } else if (share == null) {
                    doShareEnum(list, files, wildcard, searchAttributes, fnf, ff);
                } else {
                    doFindFirstNext(list, files, wildcard, searchAttributes, fnf, ff);
                }
            } catch (UnknownHostException uhe) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top