Mount a remote storage service like an S3 bucket as a Windows drive letter that any application can read and write.
Port an existing Linux FUSE-based file system to Windows using Dokany's FUSE compatibility wrapper.
Build a virtual file system that exposes database records or API data as browsable files and folders in Windows Explorer.
Requires installing the Dokany kernel driver with admin rights before any file system code can mount a volume.
Dokany is a library for Windows that lets developers create custom file systems without writing a kernel-mode device driver. A file system is the layer of software that controls how files are stored, named, and accessed on a disk or in memory. On Windows, building one normally requires writing low-level driver code that runs in the most privileged part of the operating system, which is difficult to develop and risky to debug. Dokany provides a bridge so that a developer can instead write their file system logic as an ordinary program in user space, where crashes are isolated and debugging is straightforward. The approach is similar to FUSE, which is a well-established tool that serves the same purpose on Linux. Dokany ships with a FUSE compatibility wrapper, so existing FUSE-based file systems written for Linux can often be brought to Windows with little or no modification. Internally, Dokany consists of a user-mode library (a DLL) and a kernel-mode driver that it ships with. When a Windows application tries to open, read, or write a file on a Dokany-managed volume, those requests pass through the kernel driver, which then calls back into the developer's own code via the library. From Windows Explorer's perspective, a Dokany file system looks like any other mounted drive. The project supports Windows 7 through Windows 11 and recent Windows Server versions, on x86, x64, ARM, and ARM64 hardware. It can be installed via the releases page on GitHub, or with the package managers Chocolatey and winget. The library components are licensed under the LGPL, and the sample programs under the MIT license. Dokany is itself a maintained fork of an older abandoned project called Dokan.
← dokan-dev on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.