<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: TaskListFolderAndAccountId does not list all files in the folder in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457782#M23583</link>
    <description>&lt;P&gt;Listing a folder (such as root) can take an arbitrary number of calls, so make sure you're aggregating the results from all of the calls.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's not entirely clear where/when are you actually collecting these result sets. It seems like some of the relevant code may be missing here, but looking at the code you shared, it looks like you may only be collecting the last page, since you're doing&amp;nbsp;folderNameArray.clear() each time.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Sep 2020 15:00:28 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2020-09-30T15:00:28Z</dc:date>
    <item>
      <title>TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/456693#M23542</link>
      <description>&lt;P&gt;My app is using&amp;nbsp;TaskListFolderAndAccountId to get the list of files and folders from the root directory. It was working fine and list all the files and folders in the root directory without any problem. But recently, without making any changes of codes in the app, it does not list all files and folders, only some are listed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The dependency use in the app is&amp;nbsp;&lt;SPAN&gt;'com.dropbox.core:dropbox-core-sdk:3.1.1'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Kindly advise what has gone wroing/&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 11:32:37 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/456693#M23542</guid>
      <dc:creator>TS L.</dc:creator>
      <dc:date>2020-09-28T11:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/456975#M23553</link>
      <description>&lt;P&gt;The name 'TaskListFolderAndAccountId' does not seem to be part of the&amp;nbsp;Dropbox API or&amp;nbsp;Dropbox Java SDK itself. Is that a method name from your own code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In any case, can you share the code you're using to call the API to list the files and folders you're referring to? It sounds like you're probably referring to using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/DbxUserFilesRequests.html#listFolder-java.lang.String-" target="_self"&gt;listFolder&lt;/A&gt; or&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/DbxUserFilesRequests.html#listFolderBuilder-java.lang.String-" target="_self"&gt;listFolderBuilder&lt;/A&gt; though. Do you also have&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/DbxUserFilesRequests.html#listFolderContinue-java.lang.String-" target="_self"&gt;listFolderContinue&lt;/A&gt; implemented? Note that per the&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/DbxUserFilesRequests.html#listFolder-java.lang.String-" target="_self"&gt;listFolder&lt;/A&gt;/&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/DbxUserFilesRequests.html#listFolderBuilder-java.lang.String-" target="_self"&gt;listFolderBuilder&lt;/A&gt;&amp;nbsp;documentation, you need to check&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/ListFolderResult.html#getHasMore--" target="_self"&gt;ListFolderResult.getHasMore&lt;/A&gt; to see if there are more results to retrieve, and then use&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/DbxUserFilesRequests.html#listFolderContinue-java.lang.String-" target="_self"&gt;listFolderContinue&lt;/A&gt;&amp;nbsp;to do so, if so. You're not guaranteed to get everything back in just one call, and the number of calls that are needed can change over time, so make sure you have that implemented.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 17:27:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/456975#M23553</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-09-28T17:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457103#M23560</link>
      <description>&lt;P&gt;Yes, the TaskListFolderAndAccountId is&amp;nbsp;a method name from my own code, sorry for overlooking that. You are also right that I was using listfolder to retrieve the folder and file names and I did not implement listFolderContinue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I modify my code to include listFolderContinue, more folders and file names are retrieved, but there are still some not retrieved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my modified codes:&lt;/P&gt;&lt;P&gt;@Override&lt;BR /&gt;&amp;nbsp; &amp;nbsp;protected ListFolderResult doInBackground(String... params) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp;ListFolderResult kListFolderResult;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;try {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kListFolderResult = mDbxClient.files().listFolder(params[0]);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; while (kListFolderResult.getHasMore() ){&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;kListFolderResult = mDbxClient.files().listFolderContinue(kListFolderResult.getCursor());&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;BR /&gt;&amp;nbsp; &amp;nbsp; return kListFolderResult;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; } catch (DbxException e) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mException = e;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; return null;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly advise, what have I missed in order to retriveve the complete list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 01:35:48 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457103#M23560</guid>
      <dc:creator>TS L.</dc:creator>
      <dc:date>2020-09-29T01:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457303#M23565</link>
      <description>&lt;P&gt;Can you elaborate on what exactly is missing?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, if you're looking for nested entries, you need to set the recursive mode using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/ListFolderBuilder.html#withRecursive-java.lang.Boolean-" target="_self"&gt;ListFolderBuilder.withRecursive&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:36:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457303#M23565</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-09-29T15:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457526#M23577</link>
      <description>&lt;P&gt;What I wanted is the list of folder names from the root directory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I used the code:&lt;BR /&gt;&amp;nbsp; &amp;nbsp;ListFolderResult kListFolderResult = mDbxClient.files().listFolder("")&lt;BR /&gt;I got a few files (folder + files) in kListFolderResult. (Please set A below)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I used the codes:&lt;BR /&gt;&amp;nbsp; &amp;nbsp;ListFolderResult kListFolderResult = mDbxClient.files().listFolder("");&lt;BR /&gt;&amp;nbsp; &amp;nbsp;while (kListFolderResult.getHasMore() ){&lt;BR /&gt;&amp;nbsp; &amp;nbsp;kListFolderResult = mDbxClient.files().listFolderContinue(kListFolderResult.getCursor());&lt;BR /&gt;I got more files but not all in the root directory. (Please set B belw)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;To get the folder names for kListFolderResult, my codes are as the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;override fun onDataLoaded(result: ListFolderResult) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp;var dbFolderName: String&lt;BR /&gt;&amp;nbsp; &amp;nbsp;val files = result.entries&lt;BR /&gt;&amp;nbsp; &amp;nbsp;folderNameArray.clear()&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;for (i in files.indices) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dbFolderName = files[i].name&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//Todo: for check&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Log.i("dbFolderName", "dbFolderName: $dbFolderName")&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; f (files[i] is FolderMetadata) {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; folderNameArray.add(dbFolderName)&lt;BR /&gt;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Root direcotry complete folders and files:&lt;/P&gt;&lt;P&gt;FirebaseUI [missing in set B]&lt;BR /&gt;Misc [mising in set A]&lt;BR /&gt;Camera Uploads [missing in set A]&lt;BR /&gt;Screenshots [missing in set A and B]&lt;BR /&gt;TSlim [missing in set A]&lt;BR /&gt;HawkerHelperApk [missing in set A]&lt;BR /&gt;HawkerHelperKeyAPK [missing in set B]&lt;BR /&gt;MyFamilyData2Code4Name1.4 [missing in set A]&lt;BR /&gt;our music [missing in set A]&lt;BR /&gt;MyFamilyData2Code2Name1.3.1 [missing in set A]&lt;BR /&gt;FamilyTreeSampleData [missing in set A]&lt;BR /&gt;PeopleIcon [missing in set A]&lt;BR /&gt;Screenshots [missing in set A and B]&lt;BR /&gt;FamilyTree Error [missing in set A]&lt;BR /&gt;Family Tree backup [missing in set A]&lt;BR /&gt;hhelper [missing in set A]&lt;BR /&gt;FamilyTreeAPK [missing in set A]&lt;BR /&gt;MyFamilyData1Code4Name1.2 [missing in set A and B]&lt;BR /&gt;famtree video [missing in set A]&lt;BR /&gt;photoDropbox [missing in set A]&lt;BR /&gt;Tree [missing in set A]&lt;BR /&gt;ApkPhotoStory [missing in set A]&lt;BR /&gt;famtreeAACMWa2kNcibCNAJ6nXPFVO95u4nndLjcLwzs [missing in set A&lt;BR /&gt;Asssxx.MyFamily20200927_191839 [missing in set A]&lt;BR /&gt;famtreeABCMWa2kNcibCNAJ6nXPFVO95u4nndLjcLwzs [missing in set A]&lt;BR /&gt;LTS002.MyFamily20180427_153445 [missing in set B]&lt;BR /&gt;LTS003.MyFamily20180429_163755 [missing in set B]&lt;BR /&gt;LTS001.MyFamily20180419_202734 [missing in set B]&lt;BR /&gt;LTS4xx.MyFamily20180608_181400 [missing in set B]&lt;BR /&gt;LTS005.MyFamily20180622_061054 [missing in set B]&lt;/P&gt;&lt;P&gt;app-debug.apk [missing in set A] (note: this is a file, the rest shown above are folders)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Set A folders and files:&lt;/P&gt;&lt;P&gt;InvestcomAPK&lt;BR /&gt;HawkerHelperKeyAPK&lt;BR /&gt;MyFamilyKeyAPK&lt;BR /&gt;FirebaseUI&lt;BR /&gt;HawkerPOS_APK&lt;BR /&gt;MyFamilyBackUp&lt;BR /&gt;LTS002.MyFamily20180427_153445&lt;BR /&gt;LTS003.MyFamily20180429_163755&lt;BR /&gt;LTS001.MyFamily20180419_202734&lt;BR /&gt;LTS4xx.MyFamily20180608_181400&lt;BR /&gt;LTS005.MyFamily20180622_061054&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Set B folders and files:&lt;/P&gt;&lt;P&gt;Misc&lt;BR /&gt;Camera Uploads&lt;BR /&gt;Screenshots&lt;BR /&gt;TSlim&lt;BR /&gt;HawkerHelperApk&lt;BR /&gt;MyFamilyData2Code4Name1.4&lt;BR /&gt;our music&lt;BR /&gt;MyFamilyData2Code2Name1.3.1&lt;BR /&gt;FamilyTreeSampleData&lt;BR /&gt;PeopleIcon&lt;BR /&gt;FamilyTree Error&lt;BR /&gt;Family Tree backup&lt;BR /&gt;hhelper&lt;BR /&gt;FamilyTreeAPK&lt;BR /&gt;famtree video&lt;BR /&gt;photoDropbox&lt;BR /&gt;Tree&lt;BR /&gt;ApkPhotoStory&lt;BR /&gt;famtreeAACMWa2kNcibCNAJ6nXPFVO95u4nndLjcLwzs&lt;BR /&gt;Asssxx.MyFamily20200927_191839&lt;BR /&gt;famtreeABCMWa2kNcibCNAJ6nXPFVO95u4nndLjcLwzs&lt;BR /&gt;app-debug.apk&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:16:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457526#M23577</guid>
      <dc:creator>TS L.</dc:creator>
      <dc:date>2020-09-30T00:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457782#M23583</link>
      <description>&lt;P&gt;Listing a folder (such as root) can take an arbitrary number of calls, so make sure you're aggregating the results from all of the calls.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's not entirely clear where/when are you actually collecting these result sets. It seems like some of the relevant code may be missing here, but looking at the code you shared, it looks like you may only be collecting the last page, since you're doing&amp;nbsp;folderNameArray.clear() each time.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 15:00:28 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457782#M23583</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-09-30T15:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457945#M23589</link>
      <description>&lt;P&gt;The root direcotry complete folders and files are from my Dropbox root folder. Set A and B are getting from the code Log.i("dbFolderName", "dbFolderName: $dbFolderName") when iterating in&lt;BR /&gt;for (i in files.indices) loop.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tested again by removing the line folderNameArray.clear(). It gave the same results of A and B as before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I added the line folderNameArray.clear() is to have a clean set before iterating the result.entries with the for(i in files.indices) loop.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 01:40:53 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/457945#M23589</guid>
      <dc:creator>TS L.</dc:creator>
      <dc:date>2020-10-01T01:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/458092#M23592</link>
      <description>&lt;P&gt;Thanks for the information. It's unclear from this what the issue is then. Could you &lt;A href="https://www.dropbox.com/developers/contact" target="_self"&gt;open an API ticket&lt;/A&gt; so we can take a closer look? Please include the full responses that you're getting, without any processing. That is, show what you're getting back in all of the&amp;nbsp;ListFolderResult objects from all of the calls to&amp;nbsp;listFolder and listFolderContinue without any extra handling so we can see the results and cursors. Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2020 14:43:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/458092#M23592</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-10-01T14:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/458302#M23597</link>
      <description>&lt;P&gt;API tiket openned.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ticket #11426113: API: listFolder not retrieving all folders and files at root directory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2020 03:32:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/458302#M23597</guid>
      <dc:creator>TS L.</dc:creator>
      <dc:date>2020-10-02T03:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/458429#M23599</link>
      <description>&lt;P&gt;Thanks! We'll look into it and follow up with you there.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2020 14:06:41 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/458429#M23599</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-10-02T14:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: TaskListFolderAndAccountId does not list all files in the folder</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/458632#M23602</link>
      <description>&lt;P&gt;I received reply for&amp;nbsp;&lt;SPAN&gt;Ticket #11426113: API: listFolder not retrieving all folders and files at root directory.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Moe pointed out the bug in my code. The problem is solved!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks Greg.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Oct 2020 06:11:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/TaskListFolderAndAccountId-does-not-list-all-files-in-the-folder/m-p/458632#M23602</guid>
      <dc:creator>TS L.</dc:creator>
      <dc:date>2020-10-03T06:11:13Z</dc:date>
    </item>
  </channel>
</rss>

