Add symlink API to the DirAccess (on macOS and Linux).

This commit is contained in:
bruvzg 2021-03-10 12:55:31 +02:00
parent 78861fde0b
commit 139a9d6370
No known key found for this signature in database
GPG key ID: 009E1BFE42239B95
7 changed files with 77 additions and 7 deletions

View file

@ -79,6 +79,10 @@ public:
virtual Error rename(String p_path, String p_new_path);
virtual Error remove(String p_path);
virtual bool is_link(String p_file);
virtual String read_link(String p_file);
virtual Error create_link(String p_source, String p_target);
virtual uint64_t get_space_left();
virtual String get_filesystem_type() const;