org.apache.commons.io.FileUtils.deleteDirectoryOnExit()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(4.1k)|赞(0)|评价(0)|浏览(163)

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

FileUtils.deleteDirectoryOnExit介绍

[英]Schedules a directory recursively for deletion on JVM exit.
[中]在JVM退出时递归地安排删除目录。

代码示例

代码示例来源:origin: commons-io/commons-io

/**
 * Schedules a file to be deleted when JVM exits.
 * If file is directory delete it and all sub-directories.
 *
 * @param file file or directory to delete, must not be {@code null}
 * @throws NullPointerException if the file is {@code null}
 * @throws IOException          in case deletion is unsuccessful
 */
public static void forceDeleteOnExit(final File file) throws IOException {
  if (file.isDirectory()) {
    deleteDirectoryOnExit(file);
  } else {
    file.deleteOnExit();
  }
}

代码示例来源:origin: org.apache.commons/commons-io

/**
 * Schedule a file to be deleted when JVM exits.
 * If file is directory delete it and all sub-directories.
 *
 * @param file  file or directory to delete, must not be <code>null</code>
 * @throws NullPointerException if the file is <code>null</code>
 * @throws IOException in case deletion is unsuccessful
 */
public static void forceDeleteOnExit(File file) throws IOException {
  if (file.isDirectory()) {
    deleteDirectoryOnExit(file);
  } else {
    file.deleteOnExit();
  }
}

代码示例来源:origin: org.apache.commons/com.springsource.org.apache.commons.io

/**
 * Schedules a file to be deleted when JVM exits.
 * If file is directory delete it and all sub-directories.
 *
 * @param file  file or directory to delete, must not be <code>null</code>
 * @throws NullPointerException if the file is <code>null</code>
 * @throws IOException in case deletion is unsuccessful
 */
public static void forceDeleteOnExit(File file) throws IOException {
  if (file.isDirectory()) {
    deleteDirectoryOnExit(file);
  } else {
    file.deleteOnExit();
  }
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Schedules a file to be deleted when JVM exits.
 * If file is directory delete it and all sub-directories.
 *
 * @param file file or directory to delete, must not be {@code null}
 * @throws NullPointerException if the file is {@code null}
 * @throws IOException          in case deletion is unsuccessful
 */
public static void forceDeleteOnExit(final File file) throws IOException {
  if (file.isDirectory()) {
    deleteDirectoryOnExit(file);
  } else {
    file.deleteOnExit();
  }
}

代码示例来源:origin: Nextdoor/bender

/**
 * Schedules a file to be deleted when JVM exits.
 * If file is directory delete it and all sub-directories.
 *
 * @param file  file or directory to delete, must not be <code>null</code>
 * @throws NullPointerException if the file is <code>null</code>
 * @throws IOException in case deletion is unsuccessful
 */
public static void forceDeleteOnExit(File file) throws IOException {
  if (file.isDirectory()) {
    deleteDirectoryOnExit(file);
  } else {
    file.deleteOnExit();
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.commons-io

/**
 * Schedules a file to be deleted when JVM exits.
 * If file is directory delete it and all sub-directories.
 *
 * @param file  file or directory to delete, must not be <code>null</code>
 * @throws NullPointerException if the file is <code>null</code>
 * @throws IOException in case deletion is unsuccessful
 */
public static void forceDeleteOnExit(File file) throws IOException {
  if (file.isDirectory()) {
    deleteDirectoryOnExit(file);
  } else {
    file.deleteOnExit();
  }
}

代码示例来源:origin: org.onosproject/onlab-thirdparty

/**
 * Schedules a file to be deleted when JVM exits.
 * If file is directory delete it and all sub-directories.
 *
 * @param file  file or directory to delete, must not be {@code null}
 * @throws NullPointerException if the file is {@code null}
 * @throws IOException in case deletion is unsuccessful
 */
public static void forceDeleteOnExit(File file) throws IOException {
  if (file.isDirectory()) {
    deleteDirectoryOnExit(file);
  } else {
    file.deleteOnExit();
  }
}

代码示例来源:origin: io.github.stephenc.docker/docker-client-shaded

/**
 * Schedules a file to be deleted when JVM exits.
 * If file is directory delete it and all sub-directories.
 *
 * @param file file or directory to delete, must not be {@code null}
 * @throws NullPointerException if the file is {@code null}
 * @throws IOException          in case deletion is unsuccessful
 */
public static void forceDeleteOnExit(final File file) throws IOException {
  if (file.isDirectory()) {
    deleteDirectoryOnExit(file);
  } else {
    file.deleteOnExit();
  }
}

相关文章

FileUtils类方法