I can present a piece of code explaining the action
my_folder=INPUT(path="path_to_folder")
my_array=Folder2Array(my_folder, filePattern=".*extension")
foo={}
for rec: std.iterArray(my_array.array) {
std.echo("This is the unique key:", rec.key)
std.echo("This is the path to the file:", rec.file)
// Using the files as an input for components:
foo[rec.key] = CSVJoin( my_array.array[rec.key] )
}
you can access a file directly if you know it's key.
The file list can be converted to a CSV with Array2CSV for manipulation within a component..