mirror of
https://github.com/godotengine/godot.git
synced 2025-11-02 06:31:13 +00:00
Add symlink API to the DirAccess (on macOS and Linux).
This commit is contained in:
parent
2660fafcc0
commit
6aa8f7d85b
7 changed files with 73 additions and 7 deletions
|
|
@ -77,6 +77,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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue