Dmyers\Storage\Adapter\AmazonS3::size PHP Method

size() public method

{@inheritDoc}
public size ( $path )
    public function size($path)
    {
        $object = $this->client->headObject(array('Bucket' => $this->bucket, 'Key' => $this->computePath($path)));
        return $object['ContentLength'];
    }