Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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!");
    }
}