Registry / utility / hanwen-go-fuse-v2

hanwen-go-fuse-v2

JSON →
library2.10.1gogounverified

Provides Go bindings for writing FUSE filesystems, allowing custom filesystem implementations in userspace.

go get github.com/hanwen/go-fuse/v2
INSTALL
IMPORT
SIG · HANWEN-GO-FUSE-V2
H
hanwen-go-fuse-v2
utilitygov2.10.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

fuse
github.com/hanwen/go-fuse/v2

Mounts a simple FUSE filesystem at /mnt/mountpoint.

package main import ( "github.com/hanwen/go-fuse/v2/fuse" "github.com/hanwen/go-fuse/v2/nodefs" ) func main() { root := nodefs.NewDefaultNode() server, err := fuse.NewServer(nodefs.NewFileSystemConnector(root, nil), "/mnt/mountpoint", nil) if err != nil { panic(err) } server.Serve() }
Debug
Known issues
breakingThe v2 API has significant differences from v1, including changes to node and filesystem interfaces.
fix
Refer to the v2 documentation and examples; update imports to use /v2.
affects: >=2.0.0
Upgrade
Version history
2.10.1latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources
hanwen-go-fuse-v2 — go get hanwen-go-fuse-v2 · libregistry