File name list?
Posted: 30 Dec 2016 11:26
I want to get only file names inside a folder. Currently when i am using Init Variable File List its showing me with path of files.
Code: Select all
for (i in [0 to length(files)-1])
{
name_start = lastIndexOf(files[i], "/") + 1;
files[i]=substring(files[i], name_start);
}