<?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: Is it possible to upload more than one document a time? (API) in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-it-possible-to-upload-more-than-one-document-a-time-API/m-p/197638#M9110</link>
    <description>&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 13 Dec 2016 21:39:23 GMT</pubDate>
    <dc:creator>m4man</dc:creator>
    <dc:date>2016-12-13T21:39:23Z</dc:date>
    <item>
      <title>Is it possible to upload more than one document a time? (API)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-it-possible-to-upload-more-than-one-document-a-time-API/m-p/197517#M9098</link>
      <description>&lt;P&gt;I have the following function that upload files to Dropbox:&lt;/P&gt;&lt;PRE&gt;private async Task&amp;lt;string&amp;gt; Upload(DropboxClient dbx, string localPath, string remotePath)
        {
            const int ChunkSize = 4096 * 1024;
            using (var fileStream = File.Open(localPath, FileMode.Open))
            {
                if (fileStream.Length &amp;lt;= ChunkSize)
                {
                    await dbx.Files.UploadAsync(remotePath, body: fileStream);
                    //set the expiry date
                    var settings = new SharedLinkSettings(expires: DateTime.Today.AddDays(7));
                    SharedLinkMetadata sharedLinkMetadata = await dbx.Sharing.CreateSharedLinkWithSettingsAsync(remotePath, settings);
                    return sharedLinkMetadata.Url;
                }
                else
                {
                    await this.ChunkUpload(dbx, remotePath, fileStream, ChunkSize);
                }
                return "error";
            }
 }&lt;/PRE&gt;&lt;P&gt;That works fine, but I need to upload many documents in one time and it takes long to loop through the documents and to upload them one by one, is there any option to upload a few documents at the same time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:27:43 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-it-possible-to-upload-more-than-one-document-a-time-API/m-p/197517#M9098</guid>
      <dc:creator>m4man</dc:creator>
      <dc:date>2019-05-29T09:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to upload more than one document a time? (API)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-it-possible-to-upload-more-than-one-document-a-time-API/m-p/197605#M9103</link>
      <description>Unfortunately, no, the Dropbox API doesn't offer a bulk upload method, but I'll be sure to pass this along as a feature request.</description>
      <pubDate>Tue, 13 Dec 2016 18:41:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-it-possible-to-upload-more-than-one-document-a-time-API/m-p/197605#M9103</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-12-13T18:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to upload more than one document a time? (API)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-it-possible-to-upload-more-than-one-document-a-time-API/m-p/197638#M9110</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Dec 2016 21:39:23 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-it-possible-to-upload-more-than-one-document-a-time-API/m-p/197638#M9110</guid>
      <dc:creator>m4man</dc:creator>
      <dc:date>2016-12-13T21:39:23Z</dc:date>
    </item>
  </channel>
</rss>

