Hi Monks. I need to loop through all files inside a folder (one by one), and just get all file names, to use the names somewhere else. So if the library contains: file1, file2, file3 then I would want to have this pseudocode:
for all files in folder:
{
temp_name = get_current_file_name();
function(temp_name);
}
Thanks in advance!