Method mkdirs()
Return type: boolean
Member of:
java.io.File
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
destDirFile.mkdirs();
2
boolean mkdirs = f.getParentFile().mkdirs();
3
new File(root+path).mkdirs();
4
new File(dir + "/initdir").mkdirs();
5
if (parent != null) parent.mkdirs();
6
collectionRoot.mkdirs();
7
if (!jpDir.exists()) jpDir.mkdirs();
8
f.mkdirs();
9
tmpdir.mkdirs();
10
table.getParentFile().mkdirs();
11
f.mkdirs();
12
dir.mkdirs();
13
homedir.mkdirs();
14
requestDir.mkdirs();
15
new File( this.directory ).mkdirs();
16
if( !directory.exists() ) directory.mkdirs();
17
homeDirectory.mkdirs();
18
f.mkdirs();
19
_prefsFile.getParentFile().mkdirs();
20
parent.mkdirs(); // make sure the path exists
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.