Java IOjava-io-examples

How to create a Directory in Java

Posted On
Posted By admin

In this blog post, I will be covering how you can create a directory in Java. Consider the following code snippet:


package learnjava.io;

import java.io.File;

public class CreateDirectory {

public static void main(String[] args) {
String fileName = "C:/Parent/Demo";
File file = new File(fileName);
boolean created = file.mkdirs();
if(created)
System.out.println("Directory created successfully");
else
System.out.println("Failed to created directories");

}

}

 

There is a File.mkdirs method. This creates the directory corresponding to the File object including any non-existent parent directories. It returns a true if the directory was created successfully, otherwise it returns a false. In this case, it will print the following output (Assuming there is no error in creating the directory):

Directory created successfully

There is also a File.mkdir method. This creates a directory corresponding to the path specified, but does not create parent directories. So if the parent directory is missing, this method will return a false value.

If you like this post, please do let me know via the comments box below.  You can also connect with me via my Facebook Page or subscribe to my Youtube channel!

Related Post

leave a Comment