Tai
Tai

Reputation: 1254

Using S3 partial keys in AWS SDK with PHP

I'm reading: http://docs.aws.amazon.com/aws-sdk-php/latest/class-Aws.S3.S3Client.html#_getBucketCors

I have a partial key ex: "/myfolder/myinnerfolder/"

However there are actually many objects (files) inside of myinnerfolder.

I believe that I can call something like this:

$result = $client->getObject(array(
            'Bucket' => $bucket,
            'Key'    => $key
        ));
        return $result;

If I have the full key. How can I call something like the above but have it return all of the objects and or their names to me? In Python you can simply request by the front of a key but I don't see an option to do this. Any ideas?

Upvotes: 0

Views: 1381

Answers (1)

Jeremy Lindblom
Jeremy Lindblom

Reputation: 6527

You need to use the listObjects() method with the 'Prefix' parameter.

$result = $client->listObjects(array(
    'Bucket' => $bucket,
    'Prefix' => 'myfolder/myinnerfolder/',
));
$objects = $result['Contents'];

To make this even easier, especially if you have more than 1000 objects with that prefix (which would normally require multiple requests), you can use the Iterators feature of the SDK.

$objects = $client->getIterator('ListObjects', array(
    'Bucket' => $bucket,
    'Prefix' => 'myfolder/myinnerfolder/',
));
foreach ($objects as $object) {
    echo $object['Name'];
}

Upvotes: 1

Related Questions