Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Latest commit

 

History

History
12 lines (10 loc) · 284 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 284 Bytes

GDriver

A golang implementation to access google drive by using traditional file-folder-path pattern.

    f, _ := os.Open("image1.jpeg")
    gdrive.PutFile("Holidays/image1.jpeg", f)
    gdrive.Delete("Pictures/Old Apartment Images")

Example