We’re Still Here to Help (Even Over the Holidays!) - find out more here.
Forum Discussion
Shahaf L.
10 years agoNew member | Level 1
How to filter a folder by File Format using SwiftyDropbox?
Hi :)
I’m working on an app that deals with text files and I want to present a list of files in a folder, but only files with a specific format. For example, only .txt or .md files.
Is it possibl...
Shahaf L.
10 years agoNew member | Level 1
Hi Gregory,
This is what I ended up using:
for entry in result.entries {
client.files.getMetadata(path: entry.pathLower).response { response, error in
if let metadata = response {
if let file = metadata as? Files.FileMetadata {
print("This is a file with path: \(file.pathLower)")
if file.name.hasSuffix(".txt") || file.name.hasSuffix(".md") || file.name.hasSuffix(".html") {
self.files.append(entry)
print("File \(file.name) Added to the Array")
} else {
print("Unsupported File Format")
}
} else if let folder = metadata as? Files.FolderMetadata {
print("This is a folder with path: \(folder.pathLower)")
self.files.append(entry)
}
} else {
print(error!)
}
}
}
I got a new question, but I’ll create a new post for it.
Thanks for the help! :)
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!