<?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: how to choose save location on downloadasync in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-choose-save-location-on-downloadasync/m-p/295733#M17967</link>
    <description>&lt;P&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_DownloadAsync_1.htm" target="_blank"&gt;The&amp;nbsp;DownloadAsync method&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;offers a way to download files from Dropbox, but it does not save the file to the local filesystem for you. It returns an&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/T_Dropbox_Api_Stone_IDownloadResponse_1.htm" target="_blank"&gt;IDownloadResponse&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;which has a few options to accessing the file data. Specifically, you can get the data as a byte array, stream, or string. Please refer to the documentation for more information on those.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are a few examples of using these at the following links:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/UniversalDemo/UniversalDemo/UniversalDemo.Shared/ViewModel/AppImage.cs#L73" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/UniversalDemo/UniversalDemo/UniversalDemo.Shared/ViewModel/AppImage.cs#L73&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Controllers/EditController.cs#L50" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Controllers/EditController.cs#L50&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Helpers/BlogHelpers.cs#L45" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Helpers/BlogHelpers.cs#L45&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/b8f5c751f9df6765f4e2bbb98b39bc6bde5cfadc/dropbox-sdk-dotnet/Examples/SimpleTest/Program.cs#L407" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/b8f5c751f9df6765f4e2bbb98b39bc6bde5cfadc/dropbox-sdk-dotnet/Examples/SimpleTest/Program.cs#L407&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Exactly what you do with the data is up to you. E.g., you can save it to a local file if you wish, using&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/api/system.io.file?view=netframework-4.7.2" target="_blank"&gt;the .NET File API&lt;/A&gt;, for instance.&lt;/P&gt;</description>
    <pubDate>Wed, 05 Sep 2018 19:07:22 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2018-09-05T19:07:22Z</dc:date>
    <item>
      <title>how to choose save location on downloadasync</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-choose-save-location-on-downloadasync/m-p/295727#M17965</link>
      <description>&lt;P&gt;seen the tutorial using&amp;nbsp;dbx.Files.DownloadAsync(folder + "/" + file) but is there a way to specify saved file location? using c#&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:10:37 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-choose-save-location-on-downloadasync/m-p/295727#M17965</guid>
      <dc:creator>grrmisfit</dc:creator>
      <dc:date>2019-05-29T09:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to choose save location on downloadasync</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-choose-save-location-on-downloadasync/m-p/295733#M17967</link>
      <description>&lt;P&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_DownloadAsync_1.htm" target="_blank"&gt;The&amp;nbsp;DownloadAsync method&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;offers a way to download files from Dropbox, but it does not save the file to the local filesystem for you. It returns an&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/T_Dropbox_Api_Stone_IDownloadResponse_1.htm" target="_blank"&gt;IDownloadResponse&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;which has a few options to accessing the file data. Specifically, you can get the data as a byte array, stream, or string. Please refer to the documentation for more information on those.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are a few examples of using these at the following links:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/UniversalDemo/UniversalDemo/UniversalDemo.Shared/ViewModel/AppImage.cs#L73" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/UniversalDemo/UniversalDemo/UniversalDemo.Shared/ViewModel/AppImage.cs#L73&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Controllers/EditController.cs#L50" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Controllers/EditController.cs#L50&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Helpers/BlogHelpers.cs#L45" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/d0b609bf7ca97051eb91f3802b49931389ba7404/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Helpers/BlogHelpers.cs#L45&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/b8f5c751f9df6765f4e2bbb98b39bc6bde5cfadc/dropbox-sdk-dotnet/Examples/SimpleTest/Program.cs#L407" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/b8f5c751f9df6765f4e2bbb98b39bc6bde5cfadc/dropbox-sdk-dotnet/Examples/SimpleTest/Program.cs#L407&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Exactly what you do with the data is up to you. E.g., you can save it to a local file if you wish, using&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://docs.microsoft.com/en-us/dotnet/api/system.io.file?view=netframework-4.7.2" target="_blank"&gt;the .NET File API&lt;/A&gt;, for instance.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 19:07:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/how-to-choose-save-location-on-downloadasync/m-p/295733#M17967</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-09-05T19:07:22Z</dc:date>
    </item>
  </channel>
</rss>

