本文整理汇总了Java中jcifs.smb.SmbFile.renameTo方法的典型用法代码示例。如果您正苦于以下问题:Java SmbFile.renameTo方法的具体用法?Java SmbFile.renameTo怎么用?Java SmbFile.renameTo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jcifs.smb.SmbFile
的用法示例。
在下文中一共展示了SmbFile.renameTo方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: move
import jcifs.smb.SmbFile; //导入方法依赖的package包/类
@Override
public boolean move(String srcPath, String dstPath) throws IOException {
SmbFile currentFolder = new SmbFile(getAbsolutePath(srcPath), authentication);
SmbFile targetFolder = new SmbFile(getAbsolutePath(dstPath), authentication);
try {
currentFolder.renameTo(targetFolder);
return true;
} catch (Exception e){
return false;
}
}
示例2: 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.renameTo( to );
}
示例3: move
import jcifs.smb.SmbFile; //导入方法依赖的package包/类
/**
* Moves the file under the 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 moving fails for some reason.
*/
@Override
public void move(Path source, Path target, CopyOption... options) throws IOException {
SmbFile fromFile = SMBPath.fromPath(source).getSmbFile();
SmbFile toFile = SMBPath.fromPath(target).getSmbFile();
fromFile.renameTo(toFile);
}