<?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 Using files_download_to_file method without Metadata.path_lower in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Using-files-download-to-file-method-without-Metadata-path-lower/m-p/756975#M33112</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello. I would like to download 900+ files in the shared link folder using python SDK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use files_download_to_file method which required Metadata.path_lower from files_list_folder method.&lt;BR /&gt;However, when I print a file's value from files_list_folder, the path_lower returns None value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm curious how could I download files without Metadata.path_lower using files_download_to_file method, or any other download method is okay.&lt;/P&gt;&lt;P&gt;I would like to make the script to run automatically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
    <pubDate>Wed, 13 Mar 2024 05:12:07 GMT</pubDate>
    <dc:creator>MooMoo_polar</dc:creator>
    <dc:date>2024-03-13T05:12:07Z</dc:date>
    <item>
      <title>Using files_download_to_file method without Metadata.path_lower</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Using-files-download-to-file-method-without-Metadata-path-lower/m-p/756975#M33112</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello. I would like to download 900+ files in the shared link folder using python SDK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use files_download_to_file method which required Metadata.path_lower from files_list_folder method.&lt;BR /&gt;However, when I print a file's value from files_list_folder, the path_lower returns None value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm curious how could I download files without Metadata.path_lower using files_download_to_file method, or any other download method is okay.&lt;/P&gt;&lt;P&gt;I would like to make the script to run automatically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 05:12:07 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Using-files-download-to-file-method-without-Metadata-path-lower/m-p/756975#M33112</guid>
      <dc:creator>MooMoo_polar</dc:creator>
      <dc:date>2024-03-13T05:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using files_download_to_file method without Metadata.path_lower</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Using-files-download-to-file-method-without-Metadata-path-lower/m-p/757069#M33117</link>
      <description>&lt;P&gt;If that path values are not set, that indicates that the item is not mounted under the account/root for that call. For example, you may be using an access token for an account that doesn't contain that linked item.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To download a file from a shared link for a folder containing that file, you should use &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/api/dropbox.html#dropbox.dropbox_client.Dropbox.sharing_get_shared_link_file" target="_blank"&gt;the sharing_get_shared_link_file method&lt;/A&gt;. The 'url' parameter should be the shared link to the folder, and the 'path' parameter should be the relative path to the desired file inside that folder, which you can build from the 'name' values of the entries returned by files_list_folder/files_list_folder_continue. For example, if the linked folder contains a file named "file.ext", the "path" would be "/file.ext". Or, for example, if the linked folder contains a subfolder named "subfolder", and that subfolder contains a file named "file.ext", the "path" would be &lt;BR /&gt;"/subfolder/file.ext".&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 14:02:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Using-files-download-to-file-method-without-Metadata-path-lower/m-p/757069#M33117</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2024-03-13T14:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using files_download_to_file method without Metadata.path_lower</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Using-files-download-to-file-method-without-Metadata-path-lower/m-p/757073#M33118</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1808025"&gt;@MooMoo_polar&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;I'm curious how could I download files without Metadata.path_lower using files_download_to_file method, or any other download method is okay.&lt;/P&gt;&lt;P&gt;I would like to make the script to run automatically.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1808025"&gt;@MooMoo_polar&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;A way to do what you want can be seen &lt;A href="https://www.dropboxforum.com/t5/View-download-and-export/How-to-Workaround-quot-Zip-File-is-Too-Large-quot-Error/m-p/694167/highlight/true#M46791" target="_blank" rel="noopener"&gt;here&lt;/A&gt;. &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;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 14:14:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Using-files-download-to-file-method-without-Metadata-path-lower/m-p/757073#M33118</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2024-03-13T14:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using files_download_to_file method without Metadata.path_lower</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Using-files-download-to-file-method-without-Metadata-path-lower/m-p/757261#M33121</link>
      <description>&lt;P&gt;Thank you for the support.&lt;/P&gt;&lt;P&gt;I've tried &lt;EM&gt;sharing_get_shared_link_file&lt;/EM&gt; method and it works well.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 00:36:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Using-files-download-to-file-method-without-Metadata-path-lower/m-p/757261#M33121</guid>
      <dc:creator>MooMoo_polar</dc:creator>
      <dc:date>2024-03-14T00:36:02Z</dc:date>
    </item>
  </channel>
</rss>

