Delete a Path with Files.delete : File Operation « JDK 7 « Java
- Java
- JDK 7
- File Operation
Delete a Path with Files.delete
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Path;
public class Test {
public static void main(String[] args) throws Exception {
Path newPath = FileSystems.getDefault().getPath("C:\\home\\docs\\");
Files.delete(newPath);
System.out.println("Directory deleted successfully!");
}
}
Related examples in the same category