Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getConnectedShare (0.31 sec)

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

            return this.treeConnection.getTreeType();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbTreeHandle#getConnectedShare()
         */
        @Override
        public String getConnectedShare () {
            return this.treeConnection.getConnectedShare();
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.SmbTreeHandle#isSameTree(jcifs.SmbTreeHandle)
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbTreeHandle.java

         * @throws CIFSException
         */
        String getOEMDomainName () throws CIFSException;
    
    
        /**
         * @return the share we are connected to
         */
        String getConnectedShare ();
    
    
        /**
         * @param th
         * @return whether the handles refer to the same tree
         */
        boolean isSameTree ( SmbTreeHandle th );
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

            }
        }
    
    
        /**
         * 
         * Only call this method while holding a tree handle
         * 
         * @return the share we are connected to
         */
        public String getConnectedShare () {
            try ( SmbTreeImpl t = getTree() ) {
                return t.getShare();
            }
        }
    
    
        /**
         * 
         * Only call this method while holding a tree handle
         * 
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                String server = this.fileLocator.getServerWithDfs();
                ACE[] aces;
                MsrpcShareGetInfo rpc = new MsrpcShareGetInfo(server, th.getConnectedShare());
                if (this.fileLocator.getDfsPath() == null && this.fileLocator.getPort() != -1) {
                    server = server + ":" + this.fileLocator.getPort();
                }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
Back to top