| 245 | } |
| 246 | |
| 247 | Error DirAccessJAndroid::make_dir_recursive(const String &p_dir) { |
| 248 | Error err = make_dir(p_dir); |
| 249 | if (err != OK && err != ERR_ALREADY_EXISTS) { |
| 250 | ERR_FAIL_V_MSG(err, "Could not create directory: " + p_dir); |
| 251 | } |
| 252 | return OK; |
| 253 | } |
| 254 | |
| 255 | Error DirAccessJAndroid::rename(String p_from, String p_to) { |
| 256 | if (_rename) { |
no outgoing calls
no test coverage detected