MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / make_dir_recursive

Method make_dir_recursive

platform/android/dir_access_jandroid.cpp:247–253  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

245}
246
247Error 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
255Error DirAccessJAndroid::rename(String p_from, String p_to) {
256 if (_rename) {

Callers 12

export_projectMethod · 0.45
runMethod · 0.45
move_to_trashMethod · 0.45
export_projectMethod · 0.45
runMethod · 0.45
copy_dynamic_libraryMethod · 0.45
create_directoryFunction · 0.45
_copy_and_sign_filesMethod · 0.45
export_projectMethod · 0.45
runMethod · 0.45
_export_projectMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected