douzhi19900102 2019-05-21 18:33
浏览 137
已采纳

在php中的aws s3中将文件夹从一个复制到另一个

I am trying to copy a folder to another in aws s3 as below

$s3 = S3Client::factory(
    array(
      'credentials' => array(
        'key' => 'testbucket',
        'secret' => BUCKET_SECRET //Global constant
      ),
      'version' => BUCKET_VERSION, //Global constant
      'region'  => BUCKET_REGION  //Global constant
    )
  );
$sourceBucket = 'testbucket';
$sourceKeyname = 'admin/collections/Athena'; // Object key
$targetBucket = 'testbucket';
$targetKeyname = 'admin/collections/Athena-New';

// Copy an object.
$s3->copyObject(array(
    'Bucket'     => $targetBucket,
    'Key'        => $targetKeyname,
    'CopySource' => "{$sourceBucket}/{$sourceKeyname}",
));

It is throwing error as

Fatal error: Uncaught exception 'Aws\S3\Exception\S3Exception' with message 'Error executing "CopyObject" on "https://testbucket.s3.us-east-2.amazonaws.com/admin/collections/Athena-New"; AWS HTTP error: Client error: PUT https://testbucket.s3.us-east-2.amazonaws.com/admin/collections/Athena-New resulted in a 404 Not Found response: NoSuchKeyThe specified key does not exist.admin/collections/AthenaNoSuchKeyThe specified key does not exist.admin/collections/Athena29EA131A5AD9CB836OjDNLgbdLPLMd0t7MuNi4JH6AU5pKfRmhCcWigGAaTuRlqoX8X5aMicWTui56rTH1BLRpJJtmc='

I can't figure out why it is making wrong bucket url like

https://testbucket.s3.us-east-2.amazonaws.com/admin/collections/Athena-New

While right aws bucket url is

https://s3.us-east-2.amazonaws.com/testbucket/admin/collections/Athena-New

Why it is appending the bucket name to before s3 in url?

In simple words, I wanted to copy the content of

https://s3.us-east-2.amazonaws.com/testbucket/admin/collections/Athena

to

https://s3.us-east-2.amazonaws.com/testbucket/admin/collections/Athena-New

  • 写回答

1条回答 默认 最新

  • doushi1900 2019-05-21 23:34
    关注

    It is not possible to "copy a folder" in Amazon S3 because folders do not actually exist.

    Instead, the full path of an object is stored in the object's Key (filename).

    So, an object might be called:

    admin/collections/Athena/foo.txt
    

    If you wish to copy all objects from one "folder" to another "folder", then you will need to:

    • Obtain a listing of the bucket for the given Prefix (effectively, full path to the folder)
    • Loop through each object returned, and copy the objects one-at-a-time to the new name (which effectively puts it in a new folder)

    So, it would copy admin/collections/Athena/foo.txt to admin/collections/Athena-New/foo.txt

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 设计一个二极管稳压值检测电路
  • ¥15 内网办公电脑进行向日葵
  • ¥15 如何输入双曲线的参数a然后画出双曲线?我输入处理函数加上后就没有用了,不知道怎么回事去掉后双曲线可以画出来
  • ¥50 WPF Lidgren.Network.Core2连接问题
  • ¥15 soildworks装配体的尺寸问题
  • ¥100 有偿寻云闪付SDK转URL技术
  • ¥30 基于信创PC发布的QT应用如何跨用户启动后输入中文
  • ¥20 非root手机,如何精准控制手机流量消耗的大小,如20M
  • ¥15 远程安装一下vasp
  • ¥15 自己做的代码上传图片时,报错