Files
godot/doc/classes
Juan e05d5b8813 Provide a reliable way to see original resources in a directory
When exporting a project, resources are often moved, converted or
remapped (source import files are gone, text scenes are converted to binary,
etc).

This new function allows to list a directory and obtain the actual original
resource files.

Example

```GDScript
var resources = ResourceLoader.list_directory("res://images")
print(resources)
```
Result will be something like:
```
["image1.png","image2.png","image3.png"]
```
instead of
```
["image1.png.import","image2.png.import","image3.png.import"]
```
2024-10-07 09:47:22 +02:00
..
2024-09-30 12:21:30 +02:00
2024-09-29 17:27:36 +09:00
2024-09-29 17:27:36 +09:00
2024-09-26 13:00:17 -07:00
2024-06-18 11:06:31 -04:00
2024-06-18 11:06:31 -04:00
2024-06-18 11:06:31 -04:00
2024-09-27 20:07:36 +08:00
2024-09-25 12:08:06 +02:00
2024-05-09 14:36:28 +02:00
2024-10-01 21:39:16 +02:00
2024-05-14 19:22:50 +12:00
2024-07-07 22:15:23 +02:00
2024-04-13 15:18:12 -03:00
2024-09-30 12:21:30 +02:00
2024-09-30 12:21:30 +02:00
2024-02-18 21:54:21 +11:00
2024-02-18 21:54:21 +11:00
2024-07-17 18:53:03 +02:00
2024-09-16 16:26:15 +02:00
2024-09-01 17:00:47 +02:00
2024-04-23 08:28:48 +04:00
2024-02-19 16:43:42 +00:00
2024-06-15 18:21:05 +02:00
2024-06-15 18:21:05 +02:00
2024-09-30 12:21:30 +02:00
2024-01-24 16:53:09 +01:00