diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-13 12:55:35 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-13 12:55:35 +0200 |
| commit | 51f81e1c88499f04d2ebdcc0be0b34e73f5e90eb (patch) | |
| tree | b890a98bd91bc933ccf1107d54e6dc98a0094e6f /doc | |
| parent | b1fe1f144046e1ebb0949dc0a8a623d0a2f411c2 (diff) | |
| parent | 97bcd8a631b4096b61d14371b26743331233e343 (diff) | |
| download | redot-engine-51f81e1c88499f04d2ebdcc0be0b34e73f5e90eb.tar.gz | |
Merge pull request #82957 from bruvzg/fs_case_check
Add method to check if filesystem is case sensitive.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/classes/DirAccess.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/classes/DirAccess.xml b/doc/classes/DirAccess.xml index 9c72bc2247..204bd89aa4 100644 --- a/doc/classes/DirAccess.xml +++ b/doc/classes/DirAccess.xml @@ -204,6 +204,14 @@ Returns the available space on the current directory's disk, in bytes. Returns [code]0[/code] if the platform-specific method to query the available space fails. </description> </method> + <method name="is_case_sensitive" qualifiers="const"> + <return type="bool" /> + <param index="0" name="path" type="String" /> + <description> + Returns [code]true[/code] if the file system or directory use case sensitive file names. + [b]Note:[/b] This method is implemented on macOS and Windows. On other platforms, it always returns [code]true[/code]. + </description> + </method> <method name="list_dir_begin"> <return type="int" enum="Error" /> <description> |
