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

Dokan Java Wrapper

Results 21 dokan-java issues
Sort by recently updated
recently updated
newest added

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...

As JFrog closed the bintray service last year, there should be another easy way to distribute this library as a maven/gradle dependency.

The normal way to unmount a Dokan file system is to call the close() method, or implictly close it in a try/catch block Also, dokan file system will register a...

For example: ``` @FunctionalInterface public interface Cleanup extends DokanCallback { void callback(WString rawPath, DokanFileInfo dokanFileInfo); public static final Cleanup DEFAULT = (rawPath, dokanFileInfo) -> {}; //default NO-OP } ``` (For...

Because all its methods are static methods. This would prevent people from doing stupid things like: `UnsignedNumbers un = new UnsignedNumbers();` ...Or make the class final and add a private...

@infeo doakn-java needs some more default handle implementations to be useful standalone. I look at the **cryptomator/dokany-nio-adapter** code and I think a lot of the implementation stuff can be transferred...

As far as I can see there is currently no way to read the JavaDocs of dokan-java on the internet. We should make it possible to read them on the...

Hello, just my first time diving into Dokany and dokan-java. Looking at the API I noticed that many classes like DokanyFileSystemStub are closer to "C-Code" than to default Java OOP-Approached...

enhancement