You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
Shahaf L.
9 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.
9 years agoNew member | Level 1
Hi Gregory,
I’m currently using this to view all the files in the folder:
client.files.listFolder(path: "\(folderPath)").response { response, error in
print("*** List folder ***")
if let result = response {
print("Folder contents:")
for entry in result.entries {
print(entry.name)
self.files.append(entry)
}
(self.view as! UITableView).reloadData()
print("Data Reloaded")
} else {
print(error!)
}
}
If I understood you correctly, I should use this:
client.files.listFolder(path: "\(folderPath)").response { response, error in
print("*** List folder ***")
if let result = response {
print("Folder contents:")
for entry in result.entries {
print(entry.name)
if entry.name.rangeOfString(“.txt") != nil {
self.files.append(entry)
}
}
(self.view as! UITableView).reloadData()
print("Data Reloaded")
} else {
print(error!)
}
}
Is this what you meant?
Thanks for the quick reply :)
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,880 PostsLatest Activity: 2 hours agoIf 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 or Facebook.
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!