Java File.mkdirs()

Syntax

File.mkdirs() has the following syntax.

public boolean mkdirs()

Example

In the following code shows how to use File.mkdirs() method.


//  w  ww. j a  va2  s . c  o m

import java.io.File;

public class Main {
  public static void main(String[] args) {

    // returns pathnames for files and directory
    File f = new File("C:/Texts/a/b/c");

    // create directories
    boolean bool = f.mkdirs();

    System.out.print("Directory created? " + bool);

  }
}

The code above generates the following result.