List of utility methods to do File Create If not Exist
void | ensureExists(File dir) ensure Exists if (!dir.exists()) {
dir.mkdirs();
|
void | ensureExists(File file) throws RuntimeException if file does not exist if (!file.exists()) { throw new RuntimeException("File '" + file.getAbsolutePath() + "' does not exist."); |