appwrite/docs/examples/1.3.x/client-apple/examples/storage/get-file-view.md
2023-04-28 19:40:24 +05:30

297 B

import Appwrite

let client = Client() .setEndpoint("https://cloud.appwrite.io/v1") // Your API Endpoint .setProject("5df5acd0d48c2") // Your project ID

let storage = Storage(client)

let byteBuffer = try await storage.getFileView( bucketId: "[BUCKET_ID]", fileId: "[FILE_ID]" )