5 unstable releases
1.3.1 |
|
---|---|
0.3.1+dokan206 | Dec 8, 2022 |
0.2.0+dokan150 | May 29, 2021 |
0.1.2+dokan141 | Jan 18, 2021 |
0.1.0+dokan131 | Feb 19, 2020 |
#851 in Filesystem
2MB
35K
SLoC
../README.md
lib.rs
:
Dokan is a user mode file system for Windows. It allows anyone to safely and easily develop new file systems on Windows.
This crate is a Rust-friendly wrapper for Dokan, allowing you to create file systems using Rust.
It builds upon the low-level dokan-sys
crate.
In general, to create a file system with this library, you need to implement the
FileSystemHandler
trait, create a FileSystemMounter
, and mount it
to create a FileSystem
. When dropped, the latter will block the current thread until it gets unmounted.
You have to call init
once before, and shutdown
when you're done.
The same explanations with a few lines of code: see the MemFS example!
Please note that some of the constants from Win32 API that might be used when interacting with
this crate are not provided directly here. However, you can easily find them in the
winapi
crate.