b2-sdk-php
b2-sdk-php copied to clipboard
SDK for Backblaze's B2 storage service.
Merge large file commit from #15 and enable streaming download
Hi, We have a platform where we usually upload up to 50 files from a user (images), where each upload can take up to 20 seconds for an image of...
two features: 1) add "prefix" to $client->listFiles() ``` $this->client->listVersions([ 'BucketId' => 'xxxxxx', 'Prefix' => 'abc', ]); ``` 2) add $client->listVersions() to list all versions of file
I'd like to see support for Large Files. You can reference https://www.backblaze.com/b2/docs/large_files.html for more info. I think this could widen the use case for this SDK quite a bit as...
In the b2 upload [doc](https://www.backblaze.com/b2/docs/b2_upload_file.html) there is a X-Bz-Info header present. > Up to 10 of these headers may be present. The \* part of the header name is replace...