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

Method get_temp_path

platform/android/os_android.cpp:733–744  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

731}
732
733String OS_Android::get_temp_path() const {
734 if (!temp_dir_cache.is_empty()) {
735 return temp_dir_cache;
736 }
737
738 String temp_dir = godot_io_java->get_temp_dir();
739 if (!temp_dir.is_empty()) {
740 temp_dir_cache = _remove_symlink(temp_dir);
741 return temp_dir_cache;
742 }
743 return ".";
744}
745
746String OS_Android::get_unique_id() const {
747 String unique_id = godot_io_java->get_unique_id();

Callers

nothing calls this directly

Calls 3

_remove_symlinkFunction · 0.85
is_emptyMethod · 0.45
get_temp_dirMethod · 0.45

Tested by

no test coverage detected