I have customer files uploaded to Amazon S3, and I would like to add a feature to count the size of those files for each customer. Is there a way to "peek" into the file size without downloading them? I know you can view from the Amazon control panel but I need to do it pro grammatically.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Send an HTTP HEAD request to the object. A HEAD request will retrieve the same HTTP headers as a GET request, but it will not retrieve the body of the object (saving you bandwidth). You can then parse out the Content-Length header value from the HTTP response headers. |
|||
|
|
|
You can also do a listing of the contents of the bucket. The metadata in the listing contains the file sizes of all of the objects. This is how it's implemented in the AWS SDK for PHP. |
|||
|
|
|
Using Michael's advice, my successful code looked like this:
|
|||
|
|
HEAD requestwas, please? I'm also trying to do this and am unsure how to do this – JustLikeThat Aug 1 '12 at 17:44