周玉环 d906a41c2e first commit 2 dni temu
..
fs d906a41c2e first commit 2 dni temu
fuseutil d906a41c2e first commit 2 dni temu
.gitattributes d906a41c2e first commit 2 dni temu
.gitignore d906a41c2e first commit 2 dni temu
LICENSE d906a41c2e first commit 2 dni temu
README.md d906a41c2e first commit 2 dni temu
buffer.go d906a41c2e first commit 2 dni temu
debug.go d906a41c2e first commit 2 dni temu
error_darwin.go d906a41c2e first commit 2 dni temu
error_freebsd.go d906a41c2e first commit 2 dni temu
error_linux.go d906a41c2e first commit 2 dni temu
error_std.go d906a41c2e first commit 2 dni temu
fuse.go d906a41c2e first commit 2 dni temu
fuse_darwin.go d906a41c2e first commit 2 dni temu
fuse_freebsd.go d906a41c2e first commit 2 dni temu
fuse_kernel.go d906a41c2e first commit 2 dni temu
fuse_kernel_darwin.go d906a41c2e first commit 2 dni temu
fuse_kernel_freebsd.go d906a41c2e first commit 2 dni temu
fuse_kernel_linux.go d906a41c2e first commit 2 dni temu
fuse_kernel_std.go d906a41c2e first commit 2 dni temu
fuse_linux.go d906a41c2e first commit 2 dni temu
mount.go d906a41c2e first commit 2 dni temu
mount_darwin.go d906a41c2e first commit 2 dni temu
mount_freebsd.go d906a41c2e first commit 2 dni temu
mount_linux.go d906a41c2e first commit 2 dni temu
options.go d906a41c2e first commit 2 dni temu
options_darwin.go d906a41c2e first commit 2 dni temu
options_freebsd.go d906a41c2e first commit 2 dni temu
options_linux.go d906a41c2e first commit 2 dni temu
protocol.go d906a41c2e first commit 2 dni temu
unmount.go d906a41c2e first commit 2 dni temu
unmount_linux.go d906a41c2e first commit 2 dni temu
unmount_std.go d906a41c2e first commit 2 dni temu

README.md

bazil.org/fuse -- Filesystems in Go

bazil.org/fuse is a Go library for writing FUSE userspace filesystems.

It is a from-scratch implementation of the kernel-userspace communication protocol, and does not use the C library from the project called FUSE. bazil.org/fuse embraces Go fully for safety and ease of programming.

Here’s how to get going:

go get bazil.org/fuse

Website: http://bazil.org/fuse/

Github repository: https://github.com/bazil/fuse

API docs: http://godoc.org/bazil.org/fuse

Our thanks to Russ Cox for his fuse library, which this project is based on.