本文整理汇总了Java中jcifs.smb.SmbFile.copyTo方法的典型用法代码示例。如果您正苦于以下问题:Java SmbFile.copyTo方法的具体用法?Java SmbFile.copyTo怎么用?Java SmbFile.copyTo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jcifs.smb.SmbFile
的用法示例。
在下文中一共展示了SmbFile.copyTo方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: copy
import jcifs.smb.SmbFile; //导入方法依赖的package包/类
@Override
public boolean copy(String srcFilePath, String dstFilePath)
throws IOException {
SmbFile currentFolder = new SmbFile(getAbsolutePath(srcFilePath), authentication);
SmbFile targetFolder = new SmbFile(getAbsolutePath(dstFilePath), authentication);
try {
currentFolder.copyTo(targetFolder);
return true;
} catch (Exception e){
return false;
}
}
示例2: copy
import jcifs.smb.SmbFile; //导入方法依赖的package包/类
/**
* Copies the file under provided source {@link SMBPath} to the destination {@link SMBPath}.
* CopyOptions are ignored!
*
* @param source Source {@link SMBPath}
* @param target Destination {@link SMBPath}
* @param options CopyOptions (no effect)
*
* @throws IllegalArgumentException If provided paths are not {@link SMBPath} instances.
* @throws IOException If copying fails for some reason.
*/
@Override
public void copy(Path source, Path target, CopyOption... options) throws IOException {
SmbFile fromFile = SMBPath.fromPath(source).getSmbFile();
SmbFile toFile = SMBPath.fromPath(target).getSmbFile();
fromFile.copyTo(toFile);
}
示例3: main
import jcifs.smb.SmbFile; //导入方法依赖的package包/类
public static void main( String argv[] ) throws Exception {
SmbFile from = new SmbFile( argv[0] );
SmbFile to = new SmbFile( argv[1] );
from.copyTo( to );
}