If i have to scan a folder contains large number of entities, then I will call ZwQueryDirectoryFile api(i need it from Nt level)... file phase by phase allocating the buffer of size 4096. This is a commmon usage. Except the first time, Everytime I have to keep the restartscan parameter as NULL, to get my job done. I need to know the internals of it. How does the second ZwQueryDirectoryFile call resumes the fetching from the right place. how th eindex is supplied or stored to do the resumption correctly.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
From the documentation:
You can infer from this that the state of the enumeration is associated with the file handle in some manner. |
|||
|
|