cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
What’s new: end-to-end encryption, Replay and Dash updates. Find out more about these updates, new features and more here.

Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

filesListFolder

filesListFolder

ShinehahGnolaum
Helpful | Level 7
Go to solution

 

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!!!

1 Accepted Solution

Accepted Solutions

ShinehahGnolaum
Helpful | Level 7
Go to solution
I figured it out. I've moved on to the next problem.

View solution in original post

1 Reply 1

ShinehahGnolaum
Helpful | Level 7
Go to solution
I figured it out. I've moved on to the next problem.
Need more support?
Who's talking

Top contributors to this post

  • User avatar
    ShinehahGnolaum Helpful | Level 7
What do Dropbox user levels mean?