在 Apple 平台上使用 Cloud Storage 列出檔案

Cloud Storage for Firebase 可讓您列出 Cloud Storage 值區的內容。SDK 會同時傳回目前 Cloud Storage 參照下物件的項目和前置字串。

使用清單 API 的專案需要 Cloud Storage for Firebase 規則第 2 版。如果您已有 Firebase 專案,請按照安全性規則指南中的步驟操作。

list() 使用 Google Cloud Storage List API。在 Cloud Storage for Firebase 中,我們使用 / 做為分隔符,以便模擬檔案系統語意。為了讓您能有效率地遍歷大型階層式 Cloud Storage 桶,List API 會個別傳回前置字串和項目。舉例來說,如果您上傳一個檔案 /images/uid/file1

  • root.child('images').listAll() 會傳回 /images/uid 做為前置字串。
  • root.child('images/uid').listAll() 會將檔案視為項目傳回。

Cloud Storage for Firebase SDK 不會傳回包含兩個連續 / 或以 /. 結尾的物件路徑。舉例來說,假設有一個包含下列物件的儲存體:

  • correctPrefix/happyItem
  • wrongPrefix//sadItem
  • lonelyItem/

對這個值區中項目執行清單作業,會產生下列結果:

  • 根層級的清單作業會傳回 correctPrefixwrongPrefixlonelyItem 的參照,做為 prefixes
  • correctPrefix/ 的清單作業會將 correctPrefix/happyItem 的參照項目傳回為 items
  • wrongPrefix/ 的清單作業不會傳回任何參照,因為 wrongPrefix//sadItem 包含兩個連續的 /
  • lonelyItem/ 的清單作業不會傳回任何參照,因為物件 lonelyItem// 結尾。

列出所有檔案

您可以使用 listAll(completion:) 擷取目錄的所有結果。由於所有結果都會在記憶體中緩衝,因此這項方法最適合用於小型目錄。如果在程序中新增或移除物件,作業也可能不會傳回一致的快照。

如果是大型清單,請使用分頁化的 list(withMaxResults:completion:) 方法,做為 listAll(completion:) 緩衝處理記憶體中的所有結果。

以下範例說明 listAll(completion:)

Swift

let storageReference = storage.reference().child("files/uid")
do {
  let result = try await storageReference.listAll()
  for prefix in result.prefixes {
    // The prefixes under storageReference.
    // You may call listAll(completion:) recursively on them.
  }
  for item in result.items {
    // The items under storageReference.
  }
} catch {
  // ...
}

Objective-C

FIRStorageReference *storageReference = [storage reference];
[storageReference listAllWithCompletion:^(FIRStorageListResult *result, NSError *error) {
  if (error != nil) {
    // ...
  }

  for (FIRStorageReference *prefix in result.prefixes) {
    // All the prefixes under storageReference.
    // You may call listAllWithCompletion: recursively on them.
  }
  for (FIRStorageReference *item in result.items) {
    // All items under storageReference.
  }
}];

分頁清單結果

list(withMaxResults:completion:) API 會對傳回的結果數量設限。list(withMaxResults:completion) 提供一致的網頁瀏覽,並公開 pageToken,可用於控制擷取其他結果的時機。

pageToken 會編碼上一個結果中傳回的最後一個項目的路徑和版本。在使用 pageToken 的後續要求中,系統會顯示 pageToken 之後的項目。

以下範例說明如何分頁顯示結果:

Swift

func listAllPaginated(pageToken: String? = nil) async throws {
  let storage = Storage.storage()
  let storageReference = storage.reference().child("files/uid")

  let listResult: StorageListResult
  if let pageToken = pageToken {
    listResult = try await storageReference.list(maxResults: 100, pageToken: pageToken)
  } else {
    listResult = try await storageReference.list(maxResults: 100)
  }
  let prefixes = listResult.prefixes
  let items = listResult.items
  // Handle list result
  // ...

  // Process next page
  if let token = listResult.pageToken {
    try await listAllPaginated(pageToken: token)
  }
}

Objective-C

- (void)paginateFilesAtReference:(FIRStorageReference *)reference
                       pageToken:(nullable NSString *)pageToken {
  void (^pageHandler)(FIRStorageListResult *_Nonnull, NSError *_Nullable) =
      ^(FIRStorageListResult *result, NSError *error) {
        if (error != nil) {
          // ...
        }
        NSArray *prefixes = result.prefixes;
        NSArray *items = result.items;

        // ...

        // Process next page
        if (result.pageToken != nil) {
          [self paginateFilesAtReference:reference pageToken:result.pageToken];
        }
  };

  if (pageToken != nil) {
    [reference listWithMaxResults:100 pageToken:pageToken completion:pageHandler];
  } else {
    [reference listWithMaxResults:100 completion:pageHandler];
  }
}

處理錯誤

如果您尚未將安全性規則升級至第 2 版,List API 中的方法將會失敗。如果您看到以下錯誤訊息,請升級安全性規則:

Listing objects in a bucket is disallowed for rules_version = "1".
Please update storage security rules to rules_version = "2" to use list.

其他可能的錯誤可能表示使用者沒有適當的權限。如要進一步瞭解錯誤,請參閱「處理錯誤」。