List all Files in a S3 Directory with Zend Framework

老子叫甜甜 提交于 2019-12-25 18:16:50

问题


How I can list all files in an Amazon S3 Directory of a Bucket in PHP (and maybe with a helper from Zend Framework)?


回答1:


See example #5:

http://framework.zend.com/manual/en/zend.service.amazon.s3.html

getObjectsByBucket($bucket) returns the list of the object keys, contained in the bucket.

$s3 = new Zend_Service_Amazon_S3($my_aws_key, $my_aws_secret_key);

$list = $s3->getObjectsByBucket("my-own-bucket");
foreach($list as $name) {
  echo "I have $name key:\n";
  $data = $s3->getObject("my-own-bucket/$name");
  echo "with data: $data\n";
}

Update:

"Folders" in amazon s3 are prefixes, you can set a param:

prefix - Limits the response to keys which begin with the indicated prefix. You can use prefixes to separate a bucket into different sets of keys in a way similar to how a file system uses folders.

See line #293 of S3.php



来源:https://stackoverflow.com/questions/8030837/list-all-files-in-a-s3-directory-with-zend-framework

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!