I don’t know exactly how to explain my question. Here is my try to explain: the function FindNext(SearchRec) will get me the next file from a directory. In my application I am looking sometimes go to backward a few files from my current SearchRec index. So how can I do that?
So I am looking for the oppose of FindNext(SearchRec) a function like FindBackward(SearchRec)
I wrote my own function. Here is the code which works very well for me and it is very efficient for thousands of files(because it doesn’t slow my playback algorithm).
The function was modified.