MCPcopy Create free account
hub / github.com/davidgiven/luje / mkdir

Method mkdir

lib/java/io/File.java:1166–1172  ·  view source on GitHub ↗

Creates the directory named by the trailing filename of this file. Does not create the complete path required to create this directory. @return true if the directory has been created, false otherwise. @throws SecurityException if a SecurityManager is inst

()

Source from the content-addressed store, hash-verified

1164 * @see #mkdirs
1165 */
1166 public boolean mkdir() {
1167// SecurityManager security = System.getSecurityManager();
1168// if (security != null) {
1169// security.checkWrite(path);
1170// }
1171 return mkdirImpl(properPath(true));
1172 }
1173
1174 private native boolean mkdirImpl(byte[] filePath);
1175

Callers 1

mkdirsMethod · 0.95

Calls 2

mkdirImplMethod · 0.95
properPathMethod · 0.95

Tested by

no test coverage detected