pub fn download_zip<'a>(
client: &'a impl UserAuthClient,
arg: &'a DownloadZipArg,
range_start: Option<u64>,
range_end: Option<u64>,
) -> impl Future<Output = Result<HttpRequestResult<DownloadZipResult>, Error<DownloadZipError>>> + Send + 'aAvailable on crate features
async_routes and dbx_files only.Expand description
Download a folder from the user’s Dropbox, as a zip file. The folder must be less than 20 GB in size and any single file within must be less than 4 GB in size. The resulting zip must have fewer than 10,000 total file and folder entries, including the top level folder. The input cannot be a single file. Note: this endpoint does not support HTTP range requests.