/go-service-fs

FS support for go-storage (including local FS, NAS, NFS)

Primary LanguageGoApache License 2.0Apache-2.0

Build Status License

go-services-fs

Local file system service support for go-storage.

Notes

This package has been moved to go-storage.

go get go.beyondstorage.io/services/fs/v4

Install

go get github.com/beyondstorage/go-service-fs/v3

Usage

import (
	"log"

	_ "github.com/beyondstorage/go-service-fs/v3"
	"github.com/beyondstorage/go-storage/v4/services"
)

func main() {
	store, err := services.NewStoragerFromString("fs:///path/to/workdir")
	if err != nil {
		log.Fatal(err)
	}
	
	// Write data from io.Reader into hello.txt
	n, err := store.Write("hello.txt", r, length)
}