Java mkdir makeDir(String path)

Here you can find the source of makeDir(String path)

Description

make Dir

License

Apache License

Parameter

Parameter Description

Return

void

Declaration

public static boolean makeDir(String path) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.io.File;

public class Main {

    public static boolean makeDir(String path) {
        return new File(path).mkdirs();
    }// ww w  . j  a v a 2s .  c  om
}

Related

  1. MakeDir(String dirName)
  2. MakeDir(String dirpath)
  3. makeDir(String dirPath)
  4. makeDir(String newDirName)
  5. makeDir(String parent, String child)
  6. makeDir(String path)
  7. makeDirByChild(File file)
  8. makeDirDirs(String dir)
  9. makeDirectories(final File file)