Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
VyacheslavB
6 years agoHelpful | Level 5
How to display folders in the file list Dropbox API (Swift 5)
I get a list of the user's files and then filter it to show only the music files. But I also want to see subfolders. How should I set up my filter for this? Could you help me.
My function where I get the list of files looks like this:
I also want to be able to enter a subfolder, as I understand it, for this I need to insert the path to the subfolder in path: "/ someFolder". But how can I get this path?
To check if a particular entry is a file or a folder, you can check the type of the entry, such as by switching on it as shown in this example.
13 Replies
- ethancarter1998252 months agoExplorer | Level 4
Thanks, that worked perfectly! My app is showing the folders now.
- codex1742 months agoHelpful | Level 6
You’re right, to open subfolders you just need to use the folder path that comes in the API response, look for pathLower or pathDisplay in the file list and pass that into your next request. By the way, if your app screen goes blank or doesn’t show folders correctly, you can check your screen to see if it’s a display problem.
- roggerCorrea4 years agoExplorer | Level 3
Hi Greg, thank you so much. I'm new to Swift and still figuring out many things.
This was of great help!
- Greg-DB4 years ago
Dropbox Community Moderator
roggerCorrea It looks like fileList would be an array, perhaps initialized like 'var fileList = [Any]()', or maybe more ideally 'var fileList = [Files.Metadata]()'.
Your cast is failing because you're attempting to cast the entire array of Metadata, that is, your 'response', which is the listFolderResult?.entries, instead of individual Metadata entries.
You should instead first iterate over the entries to get each entry, like the 'for entry in result.entries {' line in the original post shows.
- roggerCorrea4 years agoExplorer | Level 3
I get this error, does anybody knows what to do?
- roggerCorrea4 years agoExplorer | Level 3
Hi Viyalexhab,
How do you declare the variable fileList?
I'm trying t do the same thing, so I can append the files to it. But I can't figure out what type of variable you need to use to be able to append.Thanks!
- Mimi_896 years agoNew member | Level 2Documentaions
- VyacheslavB6 years agoHelpful | Level 5
Thanks, it really helped me!
- Greg-DB6 years ago
Dropbox Community Moderator
You're trying to cast the ListFolderResult itself, which isn't a type of Metadata. You should instead be casting each Metadata object in the ListFolderResult.entries array.
- VyacheslavB6 years agoHelpful | Level 5
When I try to use code from example, I get a warning: Cast from 'Files.ListFolderResult' to unrelated type 'Files.FileMetadata' always fails.
Maybe there is another option or a better example? Or am I doing something wrong?
About 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!