()
| 235 | } |
| 236 | |
| 237 | public boolean mkdirs() { |
| 238 | File parent = getParentFile(); |
| 239 | if (parent != null) { |
| 240 | if (!parent.exists()) { |
| 241 | if (!parent.mkdirs()) { |
| 242 | return false; |
| 243 | } |
| 244 | } |
| 245 | } |
| 246 | return mkdir(); |
| 247 | } |
| 248 | |
| 249 | public File[] listFiles() { |
| 250 | return listFiles(null); |
nothing calls this directly
no test coverage detected