diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-09-23 09:32:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-23 09:32:58 +0200 |
commit | b94460b3283ff3b487931ad978b8a0f2d49124cb (patch) | |
tree | 9efb3d1f300006a9e17194edc7f91b9c81c4d584 /core/io/file_access_encrypted.cpp | |
parent | cf1e914897e12c79adf5a6ca44fa69d07118f62c (diff) | |
parent | afe34344a6f1a803aabb30cf632c9adc54dea095 (diff) |
Merge pull request #32032 from nekomatata/encrypted-file-get-path
Implemented get_path() & get_path_absolute() for FileAccessEncrypted
Diffstat (limited to 'core/io/file_access_encrypted.cpp')
-rw-r--r-- | core/io/file_access_encrypted.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/core/io/file_access_encrypted.cpp b/core/io/file_access_encrypted.cpp index 77decc107d..0eef0ee79f 100644 --- a/core/io/file_access_encrypted.cpp +++ b/core/io/file_access_encrypted.cpp @@ -176,6 +176,22 @@ bool FileAccessEncrypted::is_open() const { return file != NULL; } +String FileAccessEncrypted::get_path() const { + + if (file) + return file->get_path(); + else + return ""; +} + +String FileAccessEncrypted::get_path_absolute() const { + + if (file) + return file->get_path_absolute(); + else + return ""; +} + void FileAccessEncrypted::seek(size_t p_position) { if (p_position > (size_t)data.size()) |