Create directory along with required nonexistent parent directories in Java

Description

The following code shows how to create directory along with required nonexistent parent directories.

Example


//from   w w w  .ja v a2s. c o  m
import java.io.File;

public class Main {

  public static void main(String[] args) {
    File dir = new File("C:/1/Parent1/Parent2/DemoDir");
    boolean isDirCreated = dir.mkdirs();
    if (isDirCreated)
      System.out.println("created");
    else
      System.out.println("Failed");

  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    I/O »




Binary File
Byte Array
CharSet
Checksum
Console
Create Copy Move Delete
Directory
Drive
Encode Decode
File Attribute
File Lock
File System
GZIP
Jar File
NIO Buffer
Path
Scanner
StreamTokenizer
Temporary File
Text File
Zip