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

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.