Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
mansi2821
4 years agoExplorer | Level 4
ListFolderContinueAsync recursive not showing correct result
-using dropbox.net SDK -CodeSnippet ListFolderResult listFolderResult; listFolderResult = dropboxClient.Files.ListFolderAsync(controlpath,true, false, false, false, true, 200).Result; var li...
mansi2821
4 years agoExplorer | Level 4
hello Thanks For your response here is my code
ListFolderResult listFolderResult;
listFolderResult = dropboxClient.Files.ListFolderAsync(controlpath,true, false, false, false, true, 200).Result;
do
{
var listfoldercontinuearg = new ListFolderContinueArg(previousDeltaLink);
listFolderResult = dropboxClient.Files.ListFolderContinueAsync(listfoldercontinuearg).Result;
foreach (var entry in listFolderResult.Entries){}
if (listFolderResult.HasMore)
{
previousDeltaLink = listFolderResult.Cursor;
}
} while (previousDeltaLink.IsNotNullOrEmpty());
mansi2821
4 years agoExplorer | Level 4
hey my issue is solved
Thanks for your response
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!