jodd.io.FileUtil.moveFileToDir()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(92)

本文整理了Java中jodd.io.FileUtil.moveFileToDir()方法的一些代码示例,展示了FileUtil.moveFileToDir()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.moveFileToDir()方法的具体详情如下:
包路径:jodd.io.FileUtil
类名称:FileUtil
方法名:moveFileToDir

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);
}

相关文章

微信公众号

最新文章

更多