1
0
Fork 0
mirror of synced 2024-08-07 14:27:52 +12:00
appwrite/app/sdks/go/docs/examples/Storage/ListFiles.md
2019-10-13 23:19:06 +03:00

35 lines
645 B
Markdown

# Storage Examples
## ListFiles
```go
package appwrite-listfiles
import (
"fmt"
"os"
"github.com/appwrite/sdk-for-go"
)
func main() {
// Create a Client
var clt := appwrite.Client{}
// Set Client required headers
clt.SetProject("")
clt.SetKey("")
// Create a new Storage service passing Client
var srv := appwrite.Storage{
client: &clt
}
// Call ListFiles method and handle results
var res, err := srv.ListFiles()
if err != nil {
panic(err)
}
fmt.Println(res)
}
```