Hi everyone, I am currently working on a small project that uses
dokan.net to mount a net drive.
Here is my question.
I successfully mounted the drive(N:\), but none of the files are listed in the Windows browser.
I guess Dokan Operations process my request in this way:
(1) When I click N:\, CreateFile is called, "/" is open, and it return 0 to indicate success.
(2) Then GetFileInfomation and FindFiles are called. "/" will be marked as Directory. And the files under "/" are added to System.Collections.ArrayList files.
(3) OpenDirectory will be called. Return 0 to indicate success.
I successfully retrieve directory information from the server. Everything seems to be fine. I think the system should have recursively called "CreateFile" to list the files in Windows browser, but it didn't.
I don't know where I got it wrong.
How to show those files in Windows browser, any advice?
Thanks a lot.
-Qi Li