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

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

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

FileUtil.checkExistsAndDirectory介绍

[英]Checks if directory exists. Throws IOException if it does not.
[中]检查目录是否存在。如果没有,则抛出IOException。

代码示例

代码示例来源:origin: oblac/jodd

/**
 * Copies a {@link File} to directory with specified copy params and returns copied destination.
 */
public static File copyFileToDir(final File srcFile, final File destDir) throws IOException {
  checkExistsAndDirectory(destDir);
  File destFile = file(destDir, srcFile.getName());
  copyFile(srcFile, destFile);
  return destFile;
}

代码示例来源:origin: oblac/jodd

/**
 * Moves a file to a directory.
 *
 * @param srcFile Source {@link File}.
 * @param destDir Destination directory.
 * @throws IOException if there is an error during move.
 */
public static File moveFileToDir(final File srcFile, final File destDir) throws IOException {
  checkExistsAndDirectory(destDir);
  return moveFile(srcFile, file(destDir, srcFile.getName()));
}

代码示例来源:origin: org.jodd/jodd-core

/**
 * Moves a file to a directory.
 *
 * @param srcFile Source {@link File}.
 * @param destDir Destination directory.
 * @throws IOException if there is an error during move.
 */
public static File moveFileToDir(final File srcFile, final File destDir) throws IOException {
  checkExistsAndDirectory(destDir);
  return moveFile(srcFile, file(destDir, srcFile.getName()));
}

代码示例来源:origin: org.jodd/jodd-core

/**
 * Copies a {@link File} to directory with specified copy params and returns copied destination.
 */
public static File copyFileToDir(final File srcFile, final File destDir) throws IOException {
  checkExistsAndDirectory(destDir);
  File destFile = file(destDir, srcFile.getName());
  copyFile(srcFile, destFile);
  return destFile;
}

相关文章