2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "EditorFileSystemDirectory" inherits= "Object" version= "4.0" >
2017-09-12 22:42:36 +02:00
<brief_description >
2018-09-13 03:38:39 +02:00
A directory for the resource filesystem.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2017-12-06 19:56:15 +01:00
A more generalized, low-level variation of the directory concept.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "find_dir_index" qualifiers= "const" >
<return type= "int" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
<description >
2017-12-06 19:56:15 +01:00
Returns the index of the directory with name [code]name[/code] or [code]-1[/code] if not found.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "find_file_index" qualifiers= "const" >
<return type= "int" >
</return>
<argument index= "0" name= "name" type= "String" >
</argument>
<description >
2017-12-06 19:56:15 +01:00
Returns the index of the file with name [code]name[/code] or [code]-1[/code] if not found.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_file" qualifiers= "const" >
<return type= "String" >
</return>
<argument index= "0" name= "idx" type= "int" >
</argument>
<description >
2017-12-06 19:56:15 +01:00
Returns the name of the file at index [code]idx[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_file_count" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2017-12-06 19:56:15 +01:00
Returns the number of files in this directory.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_file_import_is_valid" qualifiers= "const" >
<return type= "bool" >
</return>
<argument index= "0" name= "idx" type= "int" >
</argument>
<description >
2017-12-06 19:56:15 +01:00
Returns [code]true[/code] if the file at index [code]idx[/code] imported properly.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_file_path" qualifiers= "const" >
<return type= "String" >
</return>
<argument index= "0" name= "idx" type= "int" >
</argument>
<description >
2017-12-06 19:56:15 +01:00
Returns the path to the file at index [code]idx[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "get_file_script_class_extends" qualifiers= "const" >
<return type= "String" >
</return>
<argument index= "0" name= "idx" type= "int" >
</argument>
<description >
2020-07-18 17:17:00 +02:00
Returns the base class of the script class defined in the file at index [code]idx[/code]. If the file doesn't define a script class using the [code]class_name[/code] syntax, this will return an empty string.
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "get_file_script_class_name" qualifiers= "const" >
<return type= "String" >
</return>
<argument index= "0" name= "idx" type= "int" >
</argument>
<description >
2020-07-18 17:17:00 +02:00
Returns the name of the script class defined in the file at index [code]idx[/code]. If the file doesn't define a script class using the [code]class_name[/code] syntax, this will return an empty string.
2018-07-26 11:56:21 +02:00
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_file_type" qualifiers= "const" >
2020-02-22 14:59:09 +01:00
<return type= "StringName" >
2017-09-12 22:42:36 +02:00
</return>
<argument index= "0" name= "idx" type= "int" >
</argument>
<description >
2017-12-06 19:56:15 +01:00
Returns the file extension of the file at index [code]idx[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_name" >
<return type= "String" >
</return>
<description >
2017-12-06 19:56:15 +01:00
Returns the name of this directory.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_parent" >
<return type= "EditorFileSystemDirectory" >
</return>
<description >
2019-06-22 01:04:47 +02:00
Returns the parent directory for this directory or [code]null[/code] if called on a directory at [code]res://[/code] or [code]user://[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_path" qualifiers= "const" >
<return type= "String" >
</return>
<description >
2017-12-06 19:56:15 +01:00
Returns the path to this directory.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_subdir" >
<return type= "EditorFileSystemDirectory" >
</return>
<argument index= "0" name= "idx" type= "int" >
</argument>
<description >
2017-12-06 19:56:15 +01:00
Returns the subdirectory at index [code]idx[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_subdir_count" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2017-12-06 19:56:15 +01:00
Returns the number of subdirectories in this directory.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<constants >
</constants>
</class>