- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for copyFiles (0.19 sec)
-
src/main/java/jcifs/smb/SmbCopyUtil.java
* @param dest * @param b * @param bsize * @param w * @param dh * @param sh * @param req * @param resp * @throws SmbException */ 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) ) {
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
if ( isDirectory() ) { SmbCopyUtil.copyDir(this, dest, b, bsize, w, sh, dh); } else { SmbCopyUtil.copyFile(this, dest, b, bsize, w, sh, dh); } dest.clearAttributeCache(); } /** * */ void clearAttributeCache () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)