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

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

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

FileUtils.cleanDirectoryOnExit介绍

[英]Cleans a directory without deleting it.
[中]清除目录而不删除它。

代码示例

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

/**
 * Schedules a directory recursively for deletion on JVM exit.
 *
 * @param directory directory to delete, must not be {@code null}
 * @throws NullPointerException if the directory is {@code null}
 * @throws IOException          in case deletion is unsuccessful
 */
private static void deleteDirectoryOnExit(final File directory) throws IOException {
  if (!directory.exists()) {
    return;
  }
  directory.deleteOnExit();
  if (!isSymlink(directory)) {
    cleanDirectoryOnExit(directory);
  }
}

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

/**
 * Recursively schedule directory for deletion on JVM exit.
 *
 * @param directory  directory to delete, must not be <code>null</code>
 * @throws NullPointerException if the directory is <code>null</code>
 * @throws IOException in case deletion is unsuccessful
 */
private static void deleteDirectoryOnExit(File directory) throws IOException {
  if (!directory.exists()) {
    return;
  }
  cleanDirectoryOnExit(directory);
  directory.deleteOnExit();
}

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

/**
 * Schedules a directory recursively for deletion on JVM exit.
 *
 * @param directory  directory to delete, must not be <code>null</code>
 * @throws NullPointerException if the directory is <code>null</code>
 * @throws IOException in case deletion is unsuccessful
 */
private static void deleteDirectoryOnExit(File directory) throws IOException {
  if (!directory.exists()) {
    return;
  }
  cleanDirectoryOnExit(directory);
  directory.deleteOnExit();
}

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

/**
 * Schedules a directory recursively for deletion on JVM exit.
 *
 * @param directory  directory to delete, must not be <code>null</code>
 * @throws NullPointerException if the directory is <code>null</code>
 * @throws IOException in case deletion is unsuccessful
 */
private static void deleteDirectoryOnExit(File directory) throws IOException {
  if (!directory.exists()) {
    return;
  }
  cleanDirectoryOnExit(directory);
  directory.deleteOnExit();
}

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

/**
 * Schedules a directory recursively for deletion on JVM exit.
 *
 * @param directory directory to delete, must not be {@code null}
 * @throws NullPointerException if the directory is {@code null}
 * @throws IOException          in case deletion is unsuccessful
 */
private static void deleteDirectoryOnExit(final File directory) throws IOException {
  if (!directory.exists()) {
    return;
  }
  directory.deleteOnExit();
  if (!isSymlink(directory)) {
    cleanDirectoryOnExit(directory);
  }
}

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

/**
 * Schedules a directory recursively for deletion on JVM exit.
 *
 * @param directory directory to delete, must not be {@code null}
 * @throws NullPointerException if the directory is {@code null}
 * @throws IOException          in case deletion is unsuccessful
 */
private static void deleteDirectoryOnExit(final File directory) throws IOException {
  if (!directory.exists()) {
    return;
  }
  directory.deleteOnExit();
  if (!isSymlink(directory)) {
    cleanDirectoryOnExit(directory);
  }
}

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

/**
 * Schedules a directory recursively for deletion on JVM exit.
 *
 * @param directory  directory to delete, must not be <code>null</code>
 * @throws NullPointerException if the directory is <code>null</code>
 * @throws IOException in case deletion is unsuccessful
 */
private static void deleteDirectoryOnExit(File directory) throws IOException {
  if (!directory.exists()) {
    return;
  }
  directory.deleteOnExit();
  if (!isSymlink(directory)) {
    cleanDirectoryOnExit(directory);
  }
}

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

/**
 * Schedules a directory recursively for deletion on JVM exit.
 *
 * @param directory  directory to delete, must not be {@code null}
 * @throws NullPointerException if the directory is {@code null}
 * @throws IOException in case deletion is unsuccessful
 */
private static void deleteDirectoryOnExit(File directory) throws IOException {
  if (!directory.exists()) {
    return;
  }
  directory.deleteOnExit();
  if (!isSymlink(directory)) {
    cleanDirectoryOnExit(directory);
  }
}

相关文章

FileUtils类方法