Skip to content

Instantly share code, notes, and snippets.

View gauravdave01's full-sized avatar

Gaurav Dave gauravdave01

View GitHub Profile
@gauravdave01
gauravdave01 / azure-container-blob-listing.go
Last active January 14, 2023 20:21
Go code to print list of azure containers and blobs residing inside. #azure #go #golang #container #blob #ListContainers #ListBlobs #listing https://medium.com/@gauravdave01/working-with-azure-storage-using-go-dc5a8a668bc3
package main
import (
"context"
"fmt"
"log"
"net/url"
"os"
"github.com/Azure/azure-storage-blob-go/2016-05-31/azblob"
@gauravdave01
gauravdave01 / azure-container-listing.go
Last active October 10, 2018 19:45
Go code to print list of azure containers #azure #go #golang #listcontainers #listing https://medium.com/@gauravdave01/working-with-azure-storage-using-go-dc5a8a668bc3
package main
import (
"context"
"fmt"
"log"
"net/url"
"os"
"github.com/Azure/azure-storage-blob-go/2016-05-31/azblob"