2015-12-06 11:45:16 -08:00
|
|
|
// onjava/RmDir.java
|
2016-12-30 17:23:13 -08:00
|
|
|
// (c)2017 MindView LLC: see Copyright.txt
|
2015-12-06 11:45:16 -08:00
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
2016-09-23 13:23:35 -06:00
|
|
|
// Visit http://OnJava8.com for more book information.
|
2015-12-06 11:45:16 -08:00
|
|
|
package onjava;
|
|
|
|
import java.nio.file.*;
|
|
|
|
import java.nio.file.attribute.BasicFileAttributes;
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
public class RmDir {
|
|
|
|
public static void rmdir(Path dir) throws IOException {
|
2016-01-25 18:05:55 -08:00
|
|
|
Files.walkFileTree(dir,new SimpleFileVisitor<Path>() {
|
2015-12-06 11:45:16 -08:00
|
|
|
@Override
|
|
|
|
public FileVisitResult
|
|
|
|
visitFile(Path file, BasicFileAttributes attrs)
|
|
|
|
throws IOException {
|
|
|
|
Files.delete(file);
|
|
|
|
return FileVisitResult.CONTINUE;
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public FileVisitResult
|
|
|
|
postVisitDirectory(Path dir, IOException exc)
|
|
|
|
throws IOException {
|
|
|
|
Files.delete(dir);
|
|
|
|
return FileVisitResult.CONTINUE;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|