Java Create Directory mkdirs(File outdir, String path)

Here you can find the source of mkdirs(File outdir, String path)

Description

mkdirs

License

Apache License

Declaration

private static void mkdirs(File outdir, String path) 

Method Source Code

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

import java.io.File;

public class Main {
    private static void mkdirs(File outdir, String path) {
        File d = new File(outdir, path);
        if (!d.exists())
            d.mkdirs();/*from ww w.j  a  va  2s. c  o  m*/
    }
}

Related

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