Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
mansi2812
5 years agoExplorer | Level 3
C# dropbox SDK listfoldercontinueasync(string cursor) not working
I am using ListFolderContinueAsync(string cursor) of C# dropbox sdk for retrieve updated files from dropbox but I am not able to get updated files and folder from dropbox using this method.
- 5 years ago
To get nested entries like that, you'll need to set ListFolderArg.Recursive to true when first calling ListFolderAsync.
Greg-DB
Dropbox Community Moderator
5 years agoTo get nested entries like that, you'll need to set ListFolderArg.Recursive to true when first calling ListFolderAsync.
mansi2821
4 years agoExplorer | Level 4
var listfoldercontinuearg = new ListFolderContinueArg(previousDeltaLink);
listFolderResult = dropboxClient.Files.ListFolderContinueAsync(listfoldercontinuearg).Result;
ProcessLogger.Info($"Processing {listFolderResult.Entries.Count} items..");
foreach (var entry in listFolderResult.Entries)
{}
this is my exact code can you tell where do i need to set ListFolderArg.recursive to true
About Discuss Dropbox Developer & API
Make connections with 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!