本文整理匯總了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);
}