<?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: Path Not Found Error in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/415736#M22414</link>
    <description>&lt;P&gt;I use this code as well but get the same error. I use code following as :&lt;/P&gt;&lt;PRE&gt; async Task Download(DropboxClient dbx, string folder, string file)
        {
            using (var response = await dbx.Files.DownloadAsync(folder + "/" + file))
            {
                Console.WriteLine(await response.GetContentAsStringAsync());
            }
        }&lt;/PRE&gt;&lt;P&gt;and Pass perameters like :&lt;/P&gt;&lt;PRE&gt;await Download(client, "/Apps/Retailme", "Retailme.exe");&lt;/PRE&gt;&lt;P&gt;But there is same error path/not_found&lt;/P&gt;</description>
    <pubDate>Thu, 30 Apr 2020 15:17:03 GMT</pubDate>
    <dc:creator>ABDUL_REHMAN</dc:creator>
    <dc:date>2020-04-30T15:17:03Z</dc:date>
    <item>
      <title>Path Not Found Error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/271456#M16068</link>
      <description>&lt;P&gt;New user here just working through the tutorial&amp;nbsp; &lt;A href="https://www.dropbox.com/developers/documentation/dotnet#tutorial&amp;nbsp;" target="_blank"&gt;https://www.dropbox.com/developers/documentation/dotnet#tutorial&amp;nbsp;&lt;/A&gt; When I generate a token using an app for Full Dropbox, it works OK.&amp;nbsp; However, if I generate a token using an app for an App Folder only, I get an error that the path could not be found when calling download.&lt;/P&gt;&lt;P&gt;Here is my test code.&amp;nbsp; I've tried replacing "/HappyOtterInstaller" with "", but I get the same error.&amp;nbsp; Could you point me in the right direction.&amp;nbsp; Thanks.&lt;/P&gt;&lt;P&gt;wayne&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;using (var dbx = new DropboxClient("blahblah"))
            {
                var full = await dbx.Users.GetCurrentAccountAsync();                
                Console.WriteLine("{0} - {1}", full.Name.DisplayName, full.Email);
                Console.WriteLine("Press enter to close...");
                Console.ReadLine();
                await ListRootFolder(dbx);
                Console.WriteLine("Press enter to close...");
                Console.ReadLine();                
                await Download(dbx, "/HappyOtterInstaller", "currentBuild.txt");                
                Console.WriteLine("Download__Press enter to close...");
                Console.ReadLine();
                await Upload(dbx, "/HappyOtterInstaller", "currentBuild.txt", @"F:\ww.txt");
                Console.WriteLine("Press enter to close...");
                Console.ReadLine();
            }&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 May 2019 09:14:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/271456#M16068</guid>
      <dc:creator>wwaag76</dc:creator>
      <dc:date>2019-05-29T09:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Path Not Found Error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/271458#M16069</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/654618"&gt;@wwaag76&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would you mind showing the actual code within your methods that are failing? I assume things are erroring out at the call to ListRootFolder()?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you show the contents of that method?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Typically errors that occur with pathing between full access and App Folder access are not honoring the fact that App Folder apps are effectively chroot'd&amp;nbsp;to their App Folder - so as an example: /Apps/HappyOtterInstaller IS your root, all paths you want to reference are relative to that path as root. So the folder: /Apps/HappyOtterInstaller/install.exe is referred to as just /install.exe by your app. But since you say you tried passing an empty string for path (which always translates to root) I would think just listing files would work.&lt;BR /&gt;&lt;BR /&gt;Seeing the code might help figure out if there's another issue at play.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Chuck&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 21:34:00 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/271458#M16069</guid>
      <dc:creator>chirstius</dc:creator>
      <dc:date>2018-04-05T21:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Path Not Found Error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/271463#M16070</link>
      <description>&lt;P&gt;I assume things are erroring out at the call to ListRootFolder()?&lt;/P&gt;&lt;P&gt;No, it gets past that call.&amp;nbsp; It's the Download call that produces the error.&amp;nbsp; Here's the code for the Download method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;async Task Download(DropboxClient dbx, string folder, string file)
            {
                using (var response = await dbx.Files.DownloadAsync(folder + "/" + file))
                //using (var response = await dbx.Files.DownloadAsync(file))
                {
                    Console.WriteLine(await response.GetContentAsStringAsync());
                }
            }&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Apr 2018 22:43:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/271463#M16070</guid>
      <dc:creator>wwaag76</dc:creator>
      <dc:date>2018-04-05T22:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Path Not Found Error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/271469#M16071</link>
      <description>&lt;P&gt;One other thing.&amp;nbsp; Inside the app looks like this.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dbinstall.png" style="width: 999px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/2855i8C7AED2703E59983/image-size/large?v=v2&amp;amp;px=999" role="button" title="dbinstall.png" alt="dbinstall.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 23:19:12 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/271469#M16071</guid>
      <dc:creator>wwaag76</dc:creator>
      <dc:date>2018-04-05T23:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Path Not Found Error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/271576#M16080</link>
      <description>&lt;P&gt;Problem solved.&amp;nbsp; Didn't understand that the App folder was created under the main folder Apps. Now working OK.&amp;nbsp; Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Apr 2018 16:40:41 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/271576#M16080</guid>
      <dc:creator>wwaag76</dc:creator>
      <dc:date>2018-04-06T16:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Path Not Found Error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/415736#M22414</link>
      <description>&lt;P&gt;I use this code as well but get the same error. I use code following as :&lt;/P&gt;&lt;PRE&gt; async Task Download(DropboxClient dbx, string folder, string file)
        {
            using (var response = await dbx.Files.DownloadAsync(folder + "/" + file))
            {
                Console.WriteLine(await response.GetContentAsStringAsync());
            }
        }&lt;/PRE&gt;&lt;P&gt;and Pass perameters like :&lt;/P&gt;&lt;PRE&gt;await Download(client, "/Apps/Retailme", "Retailme.exe");&lt;/PRE&gt;&lt;P&gt;But there is same error path/not_found&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 15:17:03 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/415736#M22414</guid>
      <dc:creator>ABDUL_REHMAN</dc:creator>
      <dc:date>2020-04-30T15:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Path Not Found Error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/415761#M22419</link>
      <description>&lt;P&gt;[Cross-linking for reference:&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/61527512/dropbox-file-download-error-path-not-found-using-c-sharp" target="_blank"&gt;https://stackoverflow.com/questions/61527512/dropbox-file-download-error-path-not-found-using-c-sharp&lt;/A&gt;&amp;nbsp;]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1295612"&gt;@ABDUL_REHMAN&lt;/a&gt;&amp;nbsp;If you're using an app with the "app folder" permission, you don't need to include the path of the app folder itself when making API calls, such as "/Apps/Retailme". The&amp;nbsp;Dropbox API will automatically interpret your paths as being relative to your app folder.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, for example, in your code you wouldn't need to include that "/Apps/Retailme". With how that code snippet is set up, you would instead specify a "folder" value of "", which would result in the final path of "/Retailme.exe" for a file inside your app folder.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 15:55:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/415761#M22419</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-04-30T15:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Path Not Found Error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/682732#M30760</link>
      <description>&lt;P&gt;can you elaborate on what was the final path url?&lt;BR /&gt;&lt;BR /&gt;i created mine called: "implementation-dev"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but I am getting `path/not_found/`, I tried: /home/Apps/implementation-dev, [Company]/Apps/implementation-dev, /implementation-dev, but.nothing works&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 20:31:41 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/682732#M30760</guid>
      <dc:creator>raiam</dc:creator>
      <dc:date>2023-05-08T20:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Path Not Found Error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/682913#M30762</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1702297"&gt;@raiam&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Just list the content with empty path and follow whatever appear there. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt; All entries have their paths set and theses paths are mandatory correct, so you can use them as they are (just copy/paste).&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 11:53:35 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/682913#M30762</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-05-09T11:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Path Not Found Error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/682928#M30764</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1702297"&gt;@raiam&lt;/a&gt; I see you also &lt;A href="https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/I-created-a-new-App-scoped-folder-getting-cursor-is-not-workig/td-p/682736" target="_blank"&gt;opened a new thread for this&lt;/A&gt;, so we'll follow up with you there.&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 13:35:23 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Path-Not-Found-Error/m-p/682928#M30764</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-05-09T13:35:23Z</dc:date>
    </item>
  </channel>
</rss>

