Need to see if your shared folder is taking up space on your dropbox 👨‍💻? Find out how to check here.

Forum Discussion

ponkymar's avatar
ponkymar
Explorer | Level 3
9 years ago
Solved

Real Example of ListFolderContinue: method in Objective-C

Can someone please provide me a real example to show how listfoldercontinue: method works with listfolder: in objective-c or in swift? I have read 100 times the description of listfoldercontinue: method but can't understand in the right way. my folder always remains empty.

 

Previously I was using servermodified to know when the contents of a folder metdata changed.

 

To Dropbox team: Is it possible to get clientmodified and servermodified properties for DBFILESFolderMeta as well too just like we have clientModified and serverModified properties are available only for DBFILESFileMetadata?

 

Thank You

Ponky 

7 Replies

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    9 years ago
    Thanks for the post! I don't believe we have a sample exactly like that available, so I'll send this along as a request for one.

    I'm also sending this along as a request for modified times on non-file metadata, but I can't make any promises as to if or when that would be implemented and released. Using listFolder/listFolderContinue is a better way to keep track of changes.
  • ponkymar's avatar
    ponkymar
    Explorer | Level 3
    9 years ago

    To Dropbox Team, 

    Thank You for providing real example of listfolderContinue: method. Also now no need of timestamp property (like servermodified) for non-file type. 

     

    Thank You again, 

  • brduffy's avatar
    brduffy
    Explorer | Level 4
    7 years ago

    Here is some example Swift code based on the Objective C code. This works for me to get all of the folders and directories including shared folders and directories.


    func listFolderContinueWithClient(client: DropboxClient, cursor: String) { client.files.listFolderContinue(cursor: cursor).response { response, error in if let result = response { print("entries in continue:") for entry in result.entries { //if entry.name.hasSuffix(".fm") { if let folder = entry as? Files.FolderMetadata { print("directory") print(entry.pathDisplay!) self.dropBoxDirectoryArray.append(URL(fileURLWithPath: entry.pathLower!)) }else{ //print(entry.name) print(entry.pathDisplay!) self.dropBoxFileArray.append(URL(fileURLWithPath: entry.pathLower!)) } } if result.hasMore == true { self.listFolderContinueWithClient(client: client, cursor: cursor) }else{ print("no more entries") } } else { print("Error: \(error!)") } } } // FIXME: - root controler button click @objc func onClickBarButton(sender: UIBarButtonItem) { if sender.tag == 40 { // get from dropBox print("This is Directory Array") dump(self.dropBoxDirectoryArray) print("This is File array") dump(self.dropBoxFileArray) if let client = DropboxClientsManager.authorizedClient { client.files.listFolder(path: "", recursive: true).response { response, error in if let result = response { print("Folder contents:") for entry in result.entries { //if entry.name.hasSuffix(".fm") { if let folder = entry as? Files.FolderMetadata { print("directory") print(entry.pathLower!) // check for unmounted folders with a null pathLower self.dropBoxDirectoryArray.append(URL(fileURLWithPath: entry.pathLower!)) }else{ //print(entry.name) print(entry.pathDisplay!) self.dropBoxFileArray.append(URL(fileURLWithPath: entry.pathLower!)) } } if result.hasMore == true { self.listFolderContinueWithClient(client: client, cursor: result.cursor) }else{ } } else { print("Error: \(error!)") } } }else{ var topController = UIApplication.shared.keyWindow?.rootViewController while let presentedViewController = topController!.presentedViewController { topController = presentedViewController } DropboxClientsManager.authorizeFromController(UIApplication.shared, controller: topController, openURL: { (url: URL) -> Void in UIApplication.shared.open(url, options: [:], completionHandler: nil) }) } }
  • siddharth chauhan's avatar
    siddharth chauhan
    New member | Level 2
    6 years ago

    in recursive call shouldn't it be

    self.listFolderContinueWithClient(client: client, cursor: result.cursor)

    instead of this

    self.listFolderContinueWithClient(client: client, cursor: cursor)
  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    6 years ago

    siddharth chauhan Yes, you're correct. The app should use the latest returned cursor, which would be result.cursor there.

About Dropbox API Support & Feedback

Node avatar for 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!