Java Create Directory mkDirRec(File file)

Here you can find the source of mkDirRec(File file)

Description

Creates all required directories for the provided file.

License

Apache License

Declaration

public static boolean mkDirRec(File file) 

Method Source Code

//package com.java2s;
/*/*  w  w  w. j a v  a  2 s  . c om*/
   Copyright 2013 Philipp Leitner
    
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
    
   http://www.apache.org/licenses/LICENSE-2.0
    
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/

import java.io.File;

public class Main {
    /**
     * Creates all required directories for the provided file.
     */
    public static boolean mkDirRec(File file) {
        if (file == null)
            return true;

        if (!file.exists()) {
            if (!mkDirRec(file.getParentFile()))
                return false;

            if (!file.mkdir())
                return false;
        }

        if (!file.isDirectory())
            return false;

        return true;
    }
}

Related

  1. mkdir(String save)
  2. mkdir(String sFullDirName)
  3. mkDirAndFile(File file)
  4. mkdirIfMissing(File dir)
  5. mkdirIfNotExists(File dir)
  6. mkdirs(File folder)
  7. mkdirs(File outdir, String path)
  8. mkdirs(File parent, String name, boolean mkdirs)
  9. mkDirs(File path)