Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

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

License

Notifications You must be signed in to change notification settings

beyondstorage/go-service-fs

Repository files navigation

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)
}