2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "EditorFileSystemDirectory" inherits= "Object" version= "4.0" 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" />
<argument index= "0" name= "name" type= "String" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
<argument index= "0" name= "name" type= "String" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
<argument index= "0" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<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" >
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" />
<argument index= "0" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
<argument index= "0" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
<argument index= "0" name= "idx" type= "int" />
2018-07-26 11:56:21 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
<argument index= "0" name= "idx" type= "int" />
2018-07-26 11:56:21 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "StringName" />
<argument index= "0" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<description >
2021-08-12 18:38:57 +02:00
Returns the resource type of the file at index [code]idx[/code]. 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" />
<argument index= "0" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<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" >
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>