问题描述
我想在UICollectionView中显示文件列表,但是我只能从文件夹中获取项目列表。请帮助我在Firebase Storage中获取我的文件夹名称(路径)。
解决方法
文件夹在Firebase Storage API中被称为前缀,并且在您list the files in your storage bucket时返回。从该文档中:
let storageReference = storage.reference()
storageReference.listAll { (result,error) in
if let error = error {
// ...
}
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.
}
}
由于listAll
仅列出当前目录中的文件/子文件夹,因此您将必须递归调用它以获取嵌套文件夹。