- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for isSameTree (0.09 sec)
-
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
return this.treeConnection.getConnectedShare(); } /** * * {@inheritDoc} * * @see jcifs.SmbTreeHandle#isSameTree(jcifs.SmbTreeHandle) */ @Override public boolean isSameTree ( SmbTreeHandle th ) { if ( ! ( th instanceof SmbTreeHandleImpl ) ) { return false; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/SmbTreeHandle.java
/** * @return the share we are connected to */ String getConnectedShare (); /** * @param th * @return whether the handles refer to the same tree */ boolean isSameTree ( SmbTreeHandle th ); /** * @return whether this tree handle uses SMB2+ */ boolean isSMB2 (); /** * @return the remote host name */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
static void copyFile ( SmbFile src, SmbFile dest, byte[][] b, int bsize, WriterThread w, SmbTreeHandleImpl sh, SmbTreeHandleImpl dh ) throws SmbException { if ( sh.isSMB2() && dh.isSMB2() && sh.isSameTree(dh) ) { try { serverSideCopy(src, dest, sh, dh, false); return; } catch ( SmbUnsupportedOperationException e ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 17.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
throw new SmbException("Invalid operation for workgroups, servers, or shares"); } if ( !sh.isSameTree(th) ) { // trigger requests to resolve the actual target exists(); dest.exists();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)