Created
November 23, 2021 17:18
-
-
Save hiulit/772b8784436898fd7f942750ad99e33e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func get_all_files(path: String, file_ext := "", files := []): | |
var dir = Directory.new() | |
if dir.open(path) == OK: | |
dir.list_dir_begin(true, true) | |
var file_name = dir.get_next() | |
while file_name != "": | |
if dir.current_is_dir(): | |
files = get_all_files(dir.get_current_dir().plus_file(file_name), file_ext, files) | |
else: | |
if file_ext and file_name.get_extension() != file_ext: | |
file_name = dir.get_next() | |
continue | |
files.append(file_name) | |
file_name = dir.get_next() | |
else: | |
print("An error occurred when trying to access %s." % path) | |
return files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
still works (godot4.2) + small improvement
use like this: