| 266 | } |
| 267 | |
| 268 | bool FileAccessEncryptedv3::file_exists(const String &p_name) { |
| 269 | Ref<FileAccess> fa = FileAccess::open(p_name, FileAccess::READ); |
| 270 | if (fa.is_null()) { |
| 271 | return false; |
| 272 | } |
| 273 | return true; |
| 274 | } |
| 275 | |
| 276 | uint64_t FileAccessEncryptedv3::_get_modified_time(const String &p_file) { |
| 277 | return 0; |
no outgoing calls
no test coverage detected