<?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: System.AggregateException path/not_found in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/System-AggregateException-path-not-found/m-p/398837#M21849</link>
    <description>&lt;P&gt;A 'path/not_found' error like this indicates that there was nothing found in the connected account at the path specified by the app. In this case, that's specified by&amp;nbsp;the parameter value you're giving to the &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_DownloadAsync_1.htm" target="_self"&gt;DownloadAsync&lt;/A&gt; method, which you're building from `folder + "/" + file`.&lt;/P&gt;
&lt;P&gt;Those actual values are mostly redacted from your screenshot, but I do see that you have "?dl=1" at the end of your `file` value. Unless you actually have at the end of the filename of the file in your account, you shouldn't be appending that. That's just &lt;A href="https://help.dropbox.com/files-folders/share/force-download" target="_self"&gt;an option for use with shared links&lt;/A&gt;, not for file paths themselves.&lt;/P&gt;
&lt;P&gt;Also, note that if your app is registered for the "app folder" &lt;A href="https://www.dropbox.com/developers/reference/developer-guide#app-permissions" target="_self"&gt;permission&lt;/A&gt;, all file paths will automatically be interpreted&amp;nbsp;relative to the special app folder automatically made for your app, inside "/Apps" by default. In that case, make sure the file(s) you're trying to work with are actually inside that app folder.&lt;/P&gt;
&lt;P&gt;You can use the&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderAsync.htm" target="_self"&gt;ListFolderAsync&lt;/A&gt;/&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderContinueAsync_1.htm" target="_self"&gt;ListFolderContinueAsync&lt;/A&gt; methods to list the contents, if any, of the root folder, by starting with a 'path' value of the empty string "". That way you can get the actual&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/P_Dropbox_Api_Files_Metadata_PathLower.htm" target="_self"&gt;Metadata.PathLower&lt;/A&gt; value for downloading a file with&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_DownloadAsync_1.htm" target="_self"&gt;DownloadAsync&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2020 16:20:57 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2020-02-24T16:20:57Z</dc:date>
    <item>
      <title>System.AggregateException path/not_found</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/System-AggregateException-path-not-found/m-p/398648#M21846</link>
      <description>&lt;P&gt;I am trying to builg a simple app to extract a file from dropbox and save it on my computer. I have verified the token, the files exist on dropbox, it's location and the directory on my computer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code I have put together keeps giving me an error "path/not_found/"&lt;/P&gt;&lt;P&gt;Any assistance would be greatly apprecaited.&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;I am a beginner so I hope this post is in the right place....&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="APiException path/not_found" style="width: 788px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/14000i85E2C2D8D389EFBB/image-size/large?v=v2&amp;amp;px=999" role="button" title="App Error 20200223 0924.JPG" alt="APiException path/not_found" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;APiException path/not_found&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Feb 2020 14:32:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/System-AggregateException-path-not-found/m-p/398648#M21846</guid>
      <dc:creator>Blb0776</dc:creator>
      <dc:date>2020-02-23T14:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: System.AggregateException path/not_found</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/System-AggregateException-path-not-found/m-p/398837#M21849</link>
      <description>&lt;P&gt;A 'path/not_found' error like this indicates that there was nothing found in the connected account at the path specified by the app. In this case, that's specified by&amp;nbsp;the parameter value you're giving to the &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_DownloadAsync_1.htm" target="_self"&gt;DownloadAsync&lt;/A&gt; method, which you're building from `folder + "/" + file`.&lt;/P&gt;
&lt;P&gt;Those actual values are mostly redacted from your screenshot, but I do see that you have "?dl=1" at the end of your `file` value. Unless you actually have at the end of the filename of the file in your account, you shouldn't be appending that. That's just &lt;A href="https://help.dropbox.com/files-folders/share/force-download" target="_self"&gt;an option for use with shared links&lt;/A&gt;, not for file paths themselves.&lt;/P&gt;
&lt;P&gt;Also, note that if your app is registered for the "app folder" &lt;A href="https://www.dropbox.com/developers/reference/developer-guide#app-permissions" target="_self"&gt;permission&lt;/A&gt;, all file paths will automatically be interpreted&amp;nbsp;relative to the special app folder automatically made for your app, inside "/Apps" by default. In that case, make sure the file(s) you're trying to work with are actually inside that app folder.&lt;/P&gt;
&lt;P&gt;You can use the&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderAsync.htm" target="_self"&gt;ListFolderAsync&lt;/A&gt;/&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_ListFolderContinueAsync_1.htm" target="_self"&gt;ListFolderContinueAsync&lt;/A&gt; methods to list the contents, if any, of the root folder, by starting with a 'path' value of the empty string "". That way you can get the actual&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/P_Dropbox_Api_Files_Metadata_PathLower.htm" target="_self"&gt;Metadata.PathLower&lt;/A&gt; value for downloading a file with&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_DownloadAsync_1.htm" target="_self"&gt;DownloadAsync&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2020 16:20:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/System-AggregateException-path-not-found/m-p/398837#M21849</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-02-24T16:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: System.AggregateException path/not_found</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/System-AggregateException-path-not-found/m-p/399068#M21856</link>
      <description>&lt;P&gt;Greg,&lt;/P&gt;&lt;P&gt;Thank you so very much for the explanation!&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2020 13:51:18 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/System-AggregateException-path-not-found/m-p/399068#M21856</guid>
      <dc:creator>Blb0776</dc:creator>
      <dc:date>2020-02-25T13:51:18Z</dc:date>
    </item>
  </channel>
</rss>

