import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Path;
public class Main {
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!");
}
}