Forum Discussion

denickman's avatar
denickman
Explorer | Level 4
6 years ago
Solved

Get size and date of file

Hello guys. Please give me your advise. I use Swift Dropbox API request (client.files.listFolder) for getting all folders/files recursively. In response I get description for every entry such as: D...
  • Greg-DB's avatar
    6 years ago

    You can access fields like size, etc., via the fields on the FileMetadata type, like this:

    client.files.listFolder(path: path).response { (result, error) in
        if let listing = result {
            for entry in listing.entries {
                switch entry {
                    case let fileMetadata as Files.FileMetadata:
                        print("File name: \(fileMetadata.name)")
                        print("File size: \(fileMetadata.size)")
                        print("File server modified time: \(fileMetadata.serverModified)")
                        print("File client modified time: \(fileMetadata.serverModified)")
                    default:
                        print("other")
                }
            }
            // check listing.hasMore to see if there are more entries to retrieve
        } else {
           print(error!)
       }
    }

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!