<?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 List ALL folders and files on my dropbox account in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/179192#M7246</link>
    <description>&lt;P&gt;Hi, i'm working on c# and i can just show the files on the root directory , i want to show all the folders and files inside this folders on the root directory, didn't see anything on the forum, any idea?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thx&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:31:25 GMT</pubDate>
    <dc:creator>prueba p.1</dc:creator>
    <dc:date>2019-05-29T09:31:25Z</dc:date>
    <item>
      <title>List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/179192#M7246</link>
      <description>&lt;P&gt;Hi, i'm working on c# and i can just show the files on the root directory , i want to show all the folders and files inside this folders on the root directory, didn't see anything on the forum, any idea?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thx&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:31:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/179192#M7246</guid>
      <dc:creator>prueba p.1</dc:creator>
      <dc:date>2019-05-29T09:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/179193#M7247</link>
      <description>&lt;P&gt;i solved the problem, if anyone wants the code can send it&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2016 17:37:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/179193#M7247</guid>
      <dc:creator>prueba p.1</dc:creator>
      <dc:date>2016-07-26T17:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/193090#M8646</link>
      <description>&lt;P&gt;Hello. I'm newbie here and in c#.&lt;/P&gt;&lt;P&gt;Can you help me too with list folders on dropbox?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 13:58:37 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/193090#M8646</guid>
      <dc:creator>newbie</dc:creator>
      <dc:date>2016-11-04T13:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/193107#M8650</link>
      <description>&lt;P&gt;To list files and folders in a linked&amp;nbsp;Dropbox account using the official&amp;nbsp;Dropbox .NET SDK, you should use the &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderAsync_1.htm" target="_self"&gt;listFolder&lt;/A&gt; and &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderContinueAsync.htm" target="_self"&gt;listFolderContinue&lt;/A&gt; methods.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are some simple examples here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/3fa0ccc759b0c413408e3afbd08ad375f38d26d0/Examples/SimpleBlogDemo/Helpers/BlogHelpers.cs#L93" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/3fa0ccc759b0c413408e3afbd08ad375f38d26d0/Examples/SimpleBlogDemo/Helpers/BlogHelpers.cs#L93&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/3fa0ccc759b0c413408e3afbd08ad375f38d26d0/Examples/UniversalDemo/UniversalDemo/UniversalDemo.Shared/ViewModel/AppImageSet.cs#L82" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/3fa0ccc759b0c413408e3afbd08ad375f38d26d0/Examples/UniversalDemo/UniversalDemo/UniversalDemo.Shared/ViewModel/AppImageSet.cs#L82&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;(Note that these are simplified examples. In your actual app, you should make sure to check &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/P_Dropbox_Api_Files_ListFolderResult_HasMore.htm" target="_self"&gt;ListFolderResult.HasMore&lt;/A&gt;&amp;nbsp;to see if there are more results to fetch using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderContinueAsync.htm" target="_self"&gt;listFolderContinue&lt;/A&gt;.)&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 16:42:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/193107#M8650</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-11-04T16:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/270138#M15955</link>
      <description>&lt;P&gt;I want code, using rest api, how can retrive all the files in dropbox folder&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Mar 2018 05:24:27 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/270138#M15955</guid>
      <dc:creator>saravananct143</dc:creator>
      <dc:date>2018-03-27T05:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/270202#M15963</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/647257"&gt;@saravananct143&lt;/a&gt;&amp;nbsp;I see you also opened a new thread for this so we'll follow up there:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-List-all-files-in-the-Dropbox-folder-using-Web-Request/td-p/270141" target="_blank" rel="noopener"&gt;https://www.dropboxforum.com/t5/API-support/How-to-List-all-files-in-the-Dropbox-folder-using-Web-Request/m-p/270141#M15956&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2020 10:47:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/270202#M15963</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-10-05T10:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/388196#M21529</link>
      <description>&lt;P&gt;Please send code on [email address removed by Moderators to align with our &lt;A href="https://www.dropboxforum.com/t5/About-the-Dropbox-Community/Community-Guidelines/td-p/325896" target="_blank" rel="noopener"&gt;Community's Guidelines&lt;/A&gt;]&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2020 10:43:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/388196#M21529</guid>
      <dc:creator>Sajidbalti</dc:creator>
      <dc:date>2020-10-05T10:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/415728#M22413</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;/P&gt;&lt;P&gt;i need to list all files in my dropbox in c# could u help me&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 15:05:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/415728#M22413</guid>
      <dc:creator>ahmedcoo</dc:creator>
      <dc:date>2020-04-30T15:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/415759#M22418</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1295607"&gt;@ahmedcoo&lt;/a&gt;&amp;nbsp;For information on how to list all of the files/folders in an account using the&amp;nbsp;Dropbox API in C# via &lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet" target="_self"&gt;the official Dropbox .NET SDK&lt;/A&gt;, please refer to my earlier comment here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/193107/highlight/true#M8650" target="_blank"&gt;https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/193107/highlight/true#M8650&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To list everything starting at the home folder, you'd want to use the empty string "" as the path, and set recursive to true when first calling&amp;nbsp;ListFolderAsync.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 15:50:27 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/415759#M22418</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-04-30T15:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/667190#M30191</link>
      <description>&lt;P&gt;Send me the code for listing files and folders in Dropbox.&amp;nbsp; &amp;nbsp;Louise&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Mar 2023 13:08:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/667190#M30191</guid>
      <dc:creator>abelmor</dc:creator>
      <dc:date>2023-03-12T13:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: List ALL folders and files on my dropbox account</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/667539#M30203</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/725622"&gt;@abelmor&lt;/a&gt; Exactly how you use the API will on exactly what you're looking to do, so please refer to the information earlier in this thread to see how to configure these calls.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, here's a very basic sample of how you can call these methods to print out the entries for everything directly in the root folder for the call:&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;void HandleEntries(IList&amp;lt;Dropbox.Api.Files.Metadata&amp;gt; entries)
{
    foreach (var entry in entries)
    {
        Console.WriteLine(entry);
    }
}

var result = await client.Files.ListFolderAsync(path:string.Empty);
HandleEntries(result.Entries);
while (result.HasMore) {
    result = await client.Files.ListFolderContinueAsync(result.Cursor);
    HandleEntries(result.Entries);
}&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 13 Mar 2023 17:49:23 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/List-ALL-folders-and-files-on-my-dropbox-account/m-p/667539#M30203</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-03-13T17:49:23Z</dc:date>
    </item>
  </channel>
</rss>

