Replies: 1 comment 9 replies
-
Hi @lostmsu , Do you see those logs https://github.com/dokan-dev/dokan-dotnet/blob/master/DokanNet/DokanOperationProxy.cs#L309-L318 ? Does the default C# samples work ? If not, have you tried with the native sample available in the dokan install location ? |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Haven't seen it anywhere, but are breakpoints inside the
IDokanOperations
supposed to be hit?What I did is slightly modified
Mirror
to attempt to download files and folders from remote source when they don't exist locally. E.g. Mount Point -> Mirror -> Remote Source.The problem is: although my call to
DokanInstanceBuilder.Build
succeeds and the file system tracesWhen I go to the directory specified in
MountPoint
, I don't see contents of the source Mirror directory (it has a single README file). Moreover, my test app then creates a few files under the mount point, and I don't see them in the source Mirror directory at all. Moreover, when the app stops, the test files it created are still accessible under the mount point. Moreover, if I start the app again without removing them first, it fails to assign drive presumably because the mount point is not empty (which is correct, but indicates, that mounted FS is completely ignored).Neither of my breakpoints hit, and no trace is printed until I close my test app, upon which
is printed.
Beta Was this translation helpful? Give feedback.
All reactions