如何解决从Firebase Storage iOS获取文件夹名称swift
我想在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
仅列出当前目录中的文件/子文件夹,因此您将必须递归调用它以获取嵌套文件夹。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。