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

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

License

Notifications You must be signed in to change notification settings

Eun/gdriver

Repository files navigation

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