Dokan-Java is a Java wrapper for Dokan 0.6.0 and above using JNI. The original version is no longer maintained. I made this fork in order to clean the library up and improve the build process (with gradle).
For an example on how to use this library see opendedup.
Snapshot versions are available on sonatype snapshot repository.
Add the following to your build.gradle
:
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
compile 'com.github.dokan-dev.dokan-java:dokan-java:0.1-SNAPSHOT'
}
This project uses gradle as build tool.
- Make sure
JAVA_HOME
env variable is pointing to your JDK installation - Download and install the latest Dokany release
- Point
DOKAN_HOME
env variable to the installation directory (e.g.C:\Program Files (x86)\Dokan\DokanLibrary
)
Now you should be able to use gradle as usually.