A function that returns a table with all script file names from the specified path
If no path is specified, it will fetch from the root folder
A second argument, boolean, can be given to also list files inside subfolders
Folders can be accessed relative to the executing script using `./` and `../`
overload 1:
listFiles()
| Method Property | Fluent Description | Representation |
| Return Value | an array of Strings | |
overload 2:
listFiles(folder)
| Method Property | Fluent Description | Representation |
| folder accepts | a String | |
| Return Value | an array of Strings | |
overload 3:
listFiles(folder, subFolders)
| Method Property | Fluent Description | Representation |
| folder accepts | a String | |
| subFolders accepts | a Boolean | |
| Return Value | an array of Strings | |