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)
| 8152 | * may not actually exist. |
| 8153 | */ |
| 8154 | static public void createPath(String path) { |
| 8155 | createPath(new File(path)); |
| 8156 | } |
| 8157 | |
| 8158 | |
| 8159 | static public void createPath(File file) { |
no test coverage detected