Test.java Source code

Java tutorial

Introduction

Here is the source code for Test.java

Source

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\\");
        Path myDirectory = Files.createDirectory(newPath);
        System.out.println("Directory created successfully!");

    }
}