dokan-rust icon indicating copy to clipboard operation
dokan-rust copied to clipboard

Dokan Rust Wrapper

Results 6 dokan-rust issues
Sort by recently updated
recently updated
newest added

We're on `widestring v0.4.3` but the latest is `v1.0.2`. The most important thing we're missing is a macro `u16str!`

It's my understanding that in C the function pointer to `find_files_with_pattern` may be left unset. However the rust wrapper implements its default implementation [here](https://github.com/dokan-dev/dokan-rust/blob/d88cbf15d681b37b4cb5cd5e79f0f90d877219b5/dokan/src/file_system_handler.rs#L215). Problem is this: The C code...

Dokan [2.0.0](https://github.com/dokan-dev/dokany/releases) was just released. There are a few changes in the API [dokan.h](https://github.com/dokan-dev/dokany/compare/v1.5.1.1000...v2.0.0.2000#diff-043a92293d2218cfe605149daa53485589f1f260f6224f7d858ed20e6c5b3e61) and some logic described [here](https://github.com/dokan-dev/dokany/wiki/Update-Dokan-1.1.0-application-to-Dokany-2.0.0) that changed. It would be great if the wrapper could implement...

I tried to embed Dokany into my application, but after importing "dokan-rust", the program will forcefully request "dokan1.dll", and the main() entry is not executed, so the dll cannot be...

Hi, Dokany has a FUSE API ([link](https://github.com/dokan-dev/dokany/wiki/FUSE)). Does this rust binding expose that FUSE API too? I couldn't quite find it in the code but i might well be missing...

When a `println!` line is inserted into a function inside an implementation of the `FileSystemHandler` and a test is run, the `println!` line is not captured by the test but...