Takes a path and creates any in-between folders if they don't already exist. Useful when trying to save to a subfolder that may not actually exist.
(String path)
| 7342 | * may not actually exist. |
| 7343 | */ |
| 7344 | static public void createPath(String path) { |
| 7345 | createPath(new File(path)); |
| 7346 | } |
| 7347 | |
| 7348 | |
| 7349 | static public void createPath(File file) { |
no test coverage detected