2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-06 10:08:05 +02:00
<class name= "EditorFileSystemDirectory" inherits= "Object" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
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" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "name" type= "String" />
2017-09-12 22:42:36 +02:00
<description >
2022-08-12 18:07:53 +02:00
Returns the index of the directory with name [param name] or [code]-1[/code] if not found.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "find_file_index" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "name" type= "String" />
2017-09-12 22:42:36 +02:00
<description >
2022-08-12 18:07:53 +02:00
Returns the index of the file with name [param name] or [code]-1[/code] if not found.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_file" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2022-08-12 18:07:53 +02:00
Returns the name of the file at index [param idx].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_file_count" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2022-08-12 18:07:53 +02:00
Returns [code]true[/code] if the file at index [param idx] imported properly.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_file_path" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2022-08-12 18:07:53 +02:00
Returns the path to the file at index [param idx].
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" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "idx" type= "int" />
2018-07-26 11:56:21 +02:00
<description >
2022-08-12 18:07:53 +02:00
Returns the base class of the script class defined in the file at index [param idx]. 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" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "idx" type= "int" />
2018-07-26 11:56:21 +02:00
<description >
2022-08-12 18:07:53 +02:00
Returns the name of the script class defined in the file at index [param idx]. 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" >
2021-07-30 15:28:05 +02:00
<return type= "StringName" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2022-08-12 18:07:53 +02:00
Returns the resource type of the file at index [param idx]. This returns a string such as [code]"Resource"[/code] or [code]"GDScript"[/code], [i]not[/i] a file extension such as [code]".gd"[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_name" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "EditorFileSystemDirectory" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "EditorFileSystemDirectory" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2022-08-12 18:07:53 +02:00
Returns the subdirectory at index [param idx].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_subdir_count" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
2017-09-12 22:42:36 +02:00
<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>
</class>