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

beyondstorage/go-service-gdrive

Repository files navigation

go-service-gdrive

Google Drive service support for go-storage.

Notes

This package has been moved to go-storage.

go get go.beyondstorage.io/services/gdrive

Install

go get github.com/beyondstorage/go-service-gdrive

Usage

import (
	"log"

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

func main() {
	store, err := services.NewStoragerFromString("gdrive://path/to/work_dir?name=<a_meaningful_name>?credential=file:<absolute_path_to_credentials>")
	if err != nil {
		log.Fatal(err)
	}

	// Write data from io.Reader into hello.txt
	n, err := store.Write("hello.txt", r, length)
}