We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

SauravAnand's avatar
SauravAnand
Explorer | Level 4
7 years ago

Issue with ListFolderAsync()

Hello,   I'm using ListFolderAsync() to fetch all albums of Dropbox authorized account in my application and its returning too but the issue is when I'm using:   var list = await dbclient.Fil...
  • Greg-DB's avatar
    7 years ago

    The ListFolder/ListFolderContinue functionality is paginated, meaning that each call to ListFolder or ListFolderContinue will only contain a portion of the overall results.

     

    In your second piece of code, you're overwriting the `list` variable with each call to ListFolderContinue without reading what it contained from the previous call. To get everything, you'll need to read out/save the list.Entries from each call.