Creates a folder on the file system. @param path The path to the folder. @return True if the folder was created, false otherwise.
(String path)
| 128 | * @return True if the folder was created, false otherwise. |
| 129 | */ |
| 130 | public static boolean createFolder(String path) { |
| 131 | return new File(path).mkdirs(); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Copies a file from the archive's resources to the file system. |
no outgoing calls
no test coverage detected