Page updated Nov 9, 2023

List files

Amplify iOS v1 is now in Maintenance Mode until May 31st, 2024. This means that we will continue to include updates to ensure compatibility with backend services and security. No new features will be introduced in v1.

Please use the latest version (v2) of Amplify Library for Swift to get started.

If you are currently using v1, follow these instructions to upgrade to v2.

You can list all of the objects uploaded:

Amplify.Storage.list { event in switch event { case let .success(listResult): print("Completed") listResult.items.forEach { item in print("Key: \(item.key)") } case let .failure(storageError): print("Failed: \(storageError.errorDescription). \(storageError.recoverySuggestion)") } }
1Amplify.Storage.list { event in
2 switch event {
3 case let .success(listResult):
4 print("Completed")
5 listResult.items.forEach { item in
6 print("Key: \(item.key)")
7 }
8 case let .failure(storageError):
9 print("Failed: \(storageError.errorDescription). \(storageError.recoverySuggestion)")
10 }
11}