Your workflow is unique 👨💻 - tell us how you use Dropbox here.
Forum Discussion
ShinehahGnolaum
7 years agoHelpful | Level 7
filesListFolder
I found old code at GitHub/SwiftyDropbox/PhotoWatch:
if let client = Dropbox.authorizedClient {
// List folder
client.filesListFolder(path: "").response { response, error in
if let result = response {
println("Folder contents:")
for entry in result.entries {
println(entry.name)
}
} else {
println(error!)
}
}
}
I figured out that the first line should be:
if let client = DropboxClientsManager.authorizedClient {
But I can't find documentation for the rest.
I just want to be able to itemize the files in the user's iOS SwiftyDropbox app and work my way forward from there.
Can somebody help me?
!!! I FIGURED IT OUT. I'M NOT ABLE TO DELETE THIS POST!!!
- I figured it out. I've moved on to the next problem.
1 Reply
Replies have been turned off for this discussion
- ShinehahGnolaum7 years agoHelpful | Level 7I figured it out. I've moved on to the next problem.
About Dropbox API Support and Feedback
Get help with the Dropbox API from fellow developers and experts.
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!