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
()
| 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 |
no test coverage detected