模仿php中的s3cmd列表文件夹

时间:2012-08-02 09:28:53

标签: php amazon-s3 s3cmd

aws phpsdk中的哪个函数/技术等于s3cmd ls s3://

我将文件上传到s3,其结构为:

folder_a/file_a.ext
folder_a/file_aa.ext
folder_b/file_b.ext
folder_b/file_bb.ext

我需要首先列出没有所有文件名的文件夹,这可以在s3cmd中完成,但我想在php中完成

1 个答案:

答案 0 :(得分:0)

get_bucket_list()列出你们S3中的存储桶,而get_object_list()会给你一个存储桶中的对象列表。

有关更多用途,请参阅API documentation here.

希望这就是你要找的东西。

修改

如果你只想要文件名,那么你可以循环搜索你得到的结果并使用PHP basename() function