diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-03-26 00:00:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-26 00:00:25 +0100 |
commit | c6b9ceadf2d2c220acdb4081e488c13de9d5f52c (patch) | |
tree | 8a559005793cac75fa6bac3137ade57cb51ee997 /drivers/unix/dir_access_unix.h | |
parent | b3a409f4aa8808975441b3db461a20b317324873 (diff) | |
parent | b202a0dd2aa5c93b9fa14d6056513b0a537a9644 (diff) |
Merge pull request #47163 from bruvzg/macos_sandbox_file_dialog
FileDialog: add Back/Forward buttons, add message for inaccessible folders.
Diffstat (limited to 'drivers/unix/dir_access_unix.h')
-rw-r--r-- | drivers/unix/dir_access_unix.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/unix/dir_access_unix.h b/drivers/unix/dir_access_unix.h index b70df1ca02..54f4a5c312 100644 --- a/drivers/unix/dir_access_unix.h +++ b/drivers/unix/dir_access_unix.h @@ -71,6 +71,8 @@ public: virtual bool file_exists(String p_file); virtual bool dir_exists(String p_dir); + virtual bool is_readable(String p_dir); + virtual bool is_writable(String p_dir); virtual uint64_t get_modified_time(String p_file); |