Question
Get only First File in a folder without going thru all the files.
Hi there,
I have a multiple image sequences folders with over 20K images in each folder. I just want to get path of first image or any one image from each folder. Ex. "path\to\folder\name_00000.jpg".
Note first image always contains "_00000".
Folder.getFiles()[0] is too too slow to read all files first in folder and then take first one.
what might be the other way to instantly get any one file from folder?
