本文整理了Java中jodd.io.FileUtil.moveFileToDir()
方法的一些代码示例,展示了FileUtil.moveFileToDir()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.moveFileToDir()
方法的具体详情如下:
包路径:jodd.io.FileUtil
类名称:FileUtil
方法名:moveFileToDir
[英]Moves a file to a directory.
[中]将文件移动到目录。
代码示例来源:origin: redisson/redisson
public static File moveFileToDir(File src, File destDir) throws IOException {
return moveFileToDir(src, destDir, fileUtilParams);
}
public static File moveFileToDir(File src, File destDir, FileUtilParams params) throws IOException {
代码示例来源:origin: redisson/redisson
/**
* Smart move. If source is a directory, move it to destination.
* Otherwise, if destination is directory, move source file to it.
* Otherwise, try to move source file to destination file.
*/
public static void move(File src, File dest, FileUtilParams params) throws IOException {
if (src.isDirectory()) {
moveDir(src, dest);
return;
}
if (dest.isDirectory()) {
moveFileToDir(src, dest, params);
return;
}
moveFile(src, dest, params);
}
代码示例来源:origin: redisson/redisson
public static File moveFileToDir(String src, String destDir) throws IOException {
return moveFileToDir(file(src), file(destDir), fileUtilParams);
}
public static File moveFileToDir(String src, String destDir, FileUtilParams params) throws IOException {
代码示例来源:origin: redisson/redisson
public static File moveFileToDir(String src, String destDir, FileUtilParams params) throws IOException {
return moveFileToDir(file(src), file(destDir), params);
}
代码示例来源:origin: oblac/jodd
/**
* @see #moveFileToDir(File, File)
*/
public static File moveFileToDir(final String srcFile, final String destDir) throws IOException {
return moveFileToDir(file(srcFile), file(destDir));
}
代码示例来源:origin: oblac/jodd
/**
* Smart move. If source is a directory, move it to destination.
* Otherwise, if destination is directory, move source {@link File} to it.
* Otherwise, try to move source {@link File} to destination {@link File}.
*
* @param src source {@link File}
* @param dest destination {@link File}
* @throws IOException if there is an error moving.
* @see #moveDir(File, File)
* @see #moveFileToDir(File, File)
* @see #moveFile(File, File)
*/
public static void move(final File src, final File dest) throws IOException {
if (src.isDirectory()) {
moveDir(src, dest);
return;
}
if (dest.isDirectory()) {
moveFileToDir(src, dest);
return;
}
moveFile(src, dest);
}
代码示例来源:origin: oblac/jodd
FileUtil.moveFileToDir(root + "w.png", tmp);
} catch (IOException ioex) {
fail(ioex.toString());
代码示例来源:origin: org.jodd/jodd-core
/**
* @see #moveFileToDir(File, File)
*/
public static File moveFileToDir(final String srcFile, final String destDir) throws IOException {
return moveFileToDir(file(srcFile), file(destDir));
}
代码示例来源:origin: org.jodd/jodd-core
/**
* Smart move. If source is a directory, move it to destination.
* Otherwise, if destination is directory, move source {@link File} to it.
* Otherwise, try to move source {@link File} to destination {@link File}.
*
* @param src source {@link File}
* @param dest destination {@link File}
* @throws IOException if there is an error moving.
* @see #moveDir(File, File)
* @see #moveFileToDir(File, File)
* @see #moveFile(File, File)
*/
public static void move(final File src, final File dest) throws IOException {
if (src.isDirectory()) {
moveDir(src, dest);
return;
}
if (dest.isDirectory()) {
moveFileToDir(src, dest);
return;
}
moveFile(src, dest);
}
内容来源于网络,如有侵权,请联系作者删除!