zipfs icon indicating copy to clipboard operation
zipfs copied to clipboard

Example FUSE filesystem that serves a Zip archive

Results 3 zipfs issues
Sort by recently updated
recently updated
newest added

``` go get -u golang.org/x/net go get bazil.org/fuse go build ``` Thank you for developing this filesystem!

So, bazil-fuse actually doesn't appear to work for the r/o use-case that in these examples. I've implemented attr and similar (with my r/w FS) but that didn't seem to do...

I met the Ctrl-C to zipfs will cause manual umount. Please add the following after mountpoint := flag.Arg(1) cc := make(chan os.Signal, 1) signal.Notify(cc, os.Interrupt) go func(){ for range cc...