Java I/O How to - Create a directory








Question

We would like to know how to create a directory.

Answer


import java.io.File;
public class MainClass {
  public static void main(String[] a) {
    File file = new File("c:\\test\\");
    file.mkdir();
  }
}

The code above generates the following result.