CompuServe Messages

#kd_freq.library

    25-Nov-91 10:32:47
Sb: #16879-#kd_freq.library
Fm: Steve Tibbett 72627,1325
To: John Gager 71336,624
I think you misunderstand the way ExAll() works. You do have to specify a buffer size, but the buffer size isn't the maximum number of entries you can read. It works something like this: while (TRUE) { ExAll(); if (NoFilesThere) break; ProcessTheFiles(); }; (C pseudocode?) – If your buffer is bug enough, you might get all the files in your first call to ExAll(), but if not, the subsequent calls will. And it does read the directory quicker than Examine()/ExNext(). …Steve