-
Notifications
You must be signed in to change notification settings - Fork 2
raylib.LoadDirectoryFiles
JoeStrout edited this page Apr 29, 2026
·
2 revisions
Load directory filepaths NOTE: Base path is prepended to the scanned filepaths WARNING: Directory is scanned twice, first time to get files count No recursive scanning is done!
| Parameter | Default Value | Note |
|---|---|---|
| dirPath |
| Condition | Return Value |
|---|---|
| (always) | list |
files = raylib.LoadDirectoryFiles(".")
for i in range(0, files.count - 1)
print files.paths[i]
end for
raylib.UnloadDirectoryFiles files