Difference between mkdir() and mkdirs() in java for java.io.File

153,204

Solution 1

mkdirs() also creates parent directories in the path this File represents.

javadocs for mkdirs():

Creates the directory named by this abstract pathname, including any necessary but nonexistent parent directories. Note that if this operation fails it may have succeeded in creating some of the necessary parent directories.

javadocs for mkdir():

Creates the directory named by this abstract pathname.

Example:

File  f = new File("non_existing_dir/someDir");
System.out.println(f.mkdir());
System.out.println(f.mkdirs());

will yield false for the first [and no dir will be created], and true for the second, and you will have created non_existing_dir/someDir

Solution 2

mkdirs() will create the specified directory path in its entirety where mkdir() will only create the bottom most directory, failing if it can't find the parent directory of the directory it is trying to create.

In other words mkdir() is like mkdir and mkdirs() is like mkdir -p.

For example, imagine we have an empty /tmp directory. The following code

new File("/tmp/one/two/three").mkdirs();

would create the following directories:

  • /tmp/one
  • /tmp/one/two
  • /tmp/one/two/three

Where this code:

new File("/tmp/one/two/three").mkdir();

would not create any directories - as it wouldn't find /tmp/one/two - and would return false.

Solution 3

mkdir()

creates only one directory at a time, if it is parent that one only. other wise it can create the sub directory(if the specified path is existed only) and do not create any directories in between any two directories. so it can not create smultiple directories in one directory

mkdirs()

create the multiple directories(in between two directories also) at a time.

Share:
153,204
Krishna Kankal
Author by

Krishna Kankal

Updated on July 08, 2022

Comments

  • Krishna Kankal
    Krishna Kankal almost 2 years

    Can anyone tell me the difference between these two methods:

    • file.mkdir()
    • file.mkdirs()
  • MyPasswordIsLasercats
    MyPasswordIsLasercats over 10 years
    Because oracle is breaking links in the internet again: mkdirs() and mkdir()
  • amit
    amit over 10 years
    @MyPasswordIsLasercats Thank you for letting me know. fixed.
  • Arun
    Arun about 9 years
    If the directory already exists, does mkdir() return true or false? The javadoc does not seem to cover this aspect.
  • Samuel Edwin Ward
    Samuel Edwin Ward about 9 years
    @Arun, according to the Javadoc it returns "true if and only if the directory was created", which I suppose is ambiguous as to whether it was created by this call or earlier. This answer suggests the former.
  • Aerox
    Aerox about 9 years
    mkdir and mkdirs return both false in my case -.-. It works if i use double backslash "\\" BUT: if i do ".toURI()" after that i receive: file:/Users/MyName/Desktop/%5Cnon_existing_dir%5CsomeDir/ and if i do ".getPath()" i receive "\non_existing_dir\someDir" and if i do ".getCanonicalPath()" i receive /Users/MyName/Desktop/\non_existing_dir\someDir
  • Gaurav
    Gaurav almost 5 years
    @amit mkdirs works flawlessly!