use of java.nio.file.attribute.FileAttribute in project tomcat by apache.
the class TestFileResourceSetVirtual method before.
@BeforeClass
public static void before() throws IOException {
tempDir = Files.createTempDirectory("test", new FileAttribute[0]);
dir2 = new File(tempDir.toFile(), "dir2");
TomcatBaseTest.recursiveCopy(new File("test/webresources/dir2").toPath(), dir2.toPath());
}
Aggregations