Java mkdir MakeDir(String dirpath)

Here you can find the source of MakeDir(String dirpath)

Description

Creates the directory if it does not exist

License

Open Source License

Return

true if the directory exists when the function returns, else false

Declaration

public static boolean MakeDir(String dirpath) 

Method Source Code

//package com.java2s;
/**//  w ww.jav  a 2 s .com
Mybox version 0.1.0
https://github.com/mybox/mybox
    
Copyright (C) 2011  Jono Finger (jono@foodnotblogs.com)
    
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
    
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License along
with this program; if not it can be found here:
http://www.gnu.org/licenses/gpl-2.0.html
 */

import java.io.*;

public class Main {
    /**
     * Creates the directory if it does not exist
     * @return true if the directory exists when the function returns, else false
     */
    public static boolean MakeDir(String dirpath) {

        File baseDir = new File(dirpath);

        if (!baseDir.exists())
            if (!baseDir.mkdir())
                return false;

        return true;
    }
}

Related

  1. makeDir(String dir)
  2. makeDir(String dir)
  3. makeDir(String dir)
  4. makeDir(String dir)
  5. MakeDir(String dirName)
  6. makeDir(String dirPath)
  7. makeDir(String newDirName)
  8. makeDir(String parent, String child)
  9. makeDir(String path)