
com.carrotsearch.randomizedtesting.TempPathResource Maven / Gradle / Ivy
package com.carrotsearch.randomizedtesting;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Path;
/**
* A temporary path resource will be deleted at the end of a given lifecycle phase.
*
* @see RandomizedContext#closeAtEnd(Closeable, LifecycleScope)
* @see RandomizedTest#newTempDir()
*/
public class TempPathResource implements Closeable {
private final Path location;
public TempPathResource(Path location) {
this.location = location;
}
public void close() throws IOException {
if (Files.isDirectory(location)) {
RandomizedTest.rmDir(location);
} else {
Files.deleteIfExists(location);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy