-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating virtual files at NTFS-Volumes #69
Comments
Yes, you can do it by using a path folder as mount point. |
Thank you very much! |
It's working! |
Good news ! |
It is sad. :( |
Yeah. :( |
Maybe you want to use a folder as mount point? |
@marinkobabic |
Hm. Another thought:
Is it possible? |
Let me try to understand what you are trying to achieve. If you would like to control access to a specific file which already exists on the NTFS file system or FAT etc. then you should write your own minifilter. Dokan is a filesystem like NTFS or FAT. |
@marinkobabic is right, dokan does not give you the choice. You have to handle everything that is happening in the mounted device or folder. |
@marinkobabic, yes you are right. My question how this behavior is different from what Dokany doing? @Liryna, probably, the answer was meant for me? Is it difficult to implement using Dokany as a basis? |
I forgot a word yes 😄 I wanted to say that he is right. totally different driver unfortunatly 😢 |
Miserably. :( |
Like Liryna said that would be a total different driver you have to write. It's a minifilter driver and there are a lot of people on the web doing this. Also Microsoft provides templates and examples. As a filter driver you can decide to pass the request down to lower driver or to handle it your self. There is no way to avoid kernel debugging and start to learn how to manage the os request. www.osronline.com is a good place for your questions when you once start to write the code. Dokan is a virtual file system. We handle all the request for our mointpoints and pass them to usermode application which returns the response to the dokan driver. |
Dropbox and OneDrive are implemented based on shell extensions. This approach is complicate because of missing documentation and examples. Your options are: Minifilter driver or virtualize folder using dokany |
@marinkobabic, thank you! I found many examples, try to implement now. (= |
Is it possible to use dokany to create virtual files (or folders) at existing volumes?
In my case it can be read-only. (Redirect calls from an archive to the extracted files.)
The text was updated successfully, but these errors were encountered: