Right.
So, if I have read the first five entries in a directory with 10 entries, and stored the file names in an array -- then I go off and do something else for a while in the code -- when I come back and want to read the sixth entry, how do I do that?
Can I read the sixth entry directly?
or
Can I read the fifth entry directly (because I know the file name as it was stored in my array), and then read-next-entry to get to the sixth entry?
or
Do I have to read the whole directory from the beginning, and just know that the sixth entry read is the one I want becasue entries 1-5 where read previoulsy and I know they were read because I stored the contents in an array?
Thanks for you help.
Rob T
Wash DC