Java Code Examples for io.undertow.util.FileUtils#deleteRecursive()

The following examples show how to use io.undertow.util.FileUtils#deleteRecursive() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DefaultServletCachingTestCase.java    From quarkus-http with Apache License 2.0 4 votes vote down vote up
@AfterClass
public static void after() throws IOException{
    FileUtils.deleteRecursive(tmpDir);
}
 
Example 2
Source File: ExtendedAccessLogFileTestCase.java    From quarkus-http with Apache License 2.0 4 votes vote down vote up
@After
public void after() throws IOException {
    DefaultServer.stopSSLServer();
    FileUtils.deleteRecursive(logDirectory);
    logReceiver.close();
}
 
Example 3
Source File: AccessLogFileTestCase.java    From quarkus-http with Apache License 2.0 4 votes vote down vote up
@After
public void after() throws IOException {
    FileUtils.deleteRecursive(logDirectory);
}