FUSE on Windows
Windows has no native FUSE. MIRAGE’s Python FUSE mounts run on WinFsp, a maintained Windows file system driver with a FUSE-compatible layer. Support is experimental: the FUSE integration battery passes in CI onwindows-latest, but Windows is not yet a fully
supported platform. The TypeScript SDK has no Windows FUSE support at all
(its binding only targets macOS and Linux).
Install WinFsp
Requires Windows 10 (1809+) or Windows 11.- winget
- Chocolatey
- Installer
Verify
mfusepy locates winfsp-x64.dll through the registry; if the import
succeeds, the driver is reachable.
Windows-specific behavior
MIRAGE handles the WinFsp conventions automatically, but three behaviors differ from macOS/Linux and are worth knowing:- Unmount happens at process exit. There is no
fusermounton Windows; WinFsp releases the mount when the process serving it exits. Closing the workspace does not actively unmount. - Ownership is a mount-level mapping. All files appear owned by the user
who mounted the filesystem (WinFsp’s
uid=-1,gid=-1mapping). Per-file POSIX owners from backends are not represented. statopens a handle. Windows cannot query file attributes without opening the file, so size-unknown API-backed files fetch their content on the first per-filestatand immediately report the real size — where macOS/Linux report 0 until first open. Directory listings stay cheap on all platforms.