Files
2021-10-18 08:47:46 +02:00

469 B

import Appwrite

func main() { let client = Client() .setEndpoint("https://[HOSTNAME_OR_IP]/v1") // Your API Endpoint .setProject("5df5acd0d48c2") // Your project ID

let storage = Storage(client)
storage.getFile(
    fileId: "[FILE_ID]"
) { result in
    switch result {
    case .failure(let error):
        print(error.message)
    case .success(let file):
        print(String(describing: file)
    }
}

}