Java Create Directory mkdirs(String s)

Here you can find the source of mkdirs(String s)

Description

Mkdirs.

License

Open Source License

Parameter

Parameter Description
s the s

Return

true, if successful

Declaration

public static boolean mkdirs(String s) 

Method Source Code

//package com.java2s;
/**//from   w ww. j a  v a  2s.c  o  m
 * This file is part of the Nilestore project.
 * 
 * Copyright (C) (2011) Nile University (NU)
 *
 * Nilestore 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

import java.io.File;

public class Main {
    /**
     * Mkdirs.
     * 
     * @param s
     *            the s
     * @return true, if successful
     */
    public static boolean mkdirs(String s) {
        File f = new File(s);
        return f.mkdirs();
    }
}

Related

  1. mkdirs(String parentName, String childName)
  2. mkDirs(String path)
  3. mkdirs(String path)
  4. mkdirs(String path, boolean deleteBeforeCreate)
  5. mkdirs(String path, boolean override)
  6. mkdirsFor(File destination)
  7. mkdirsIfAbsent(String pathname)
  8. mkdirsIfNotExists(String pathname)
  9. mkdirsifnotExists(String s)