4

使用 php sdk 将文件直接上传到 AWS S3 中的文件夹的语法是什么?

我使用以下方法成功上传到存储桶:

$response = $s3->create_object($bucket, $file_name, array('fileUpload' => $file_path))

发送!

4

3 回答 3

12

试试这个方法

$s3->create_object($bucket, 'folder/filename', $options)
于 2012-09-19T08:53:36.743 回答
5

只需做 1 件事,添加 'path/' 例如:如果您在存储桶中有一个文件夹 'videos',那么您必须在 'key' =>'vid​​eos/video-name-here' 中添加这样的路径。

try {
    // Upload data.
$result = $s3Client->putObject([
    'Bucket' => bucket-name,
    'Key'    => 'videos/video-name', //add path here
    'Body'   => fopen($video, 'r'),
    'ACL'    => 'public-read'
]);
print_r($result['ObjectURL']);

} catch (S3Exception $e) {
    echo $e->getMessage() . PHP_EOL;
}
于 2018-11-28T05:27:09.210 回答
0

这是您可以尝试的另一种方法

    $this->Aws->bucket = 'bucket'
    $old_file = $dir. '/'.old_file_name;       
    $new_file = $dir. '/'.new_file_name;
    $file_permission = 'private';
    $this->Aws->upload($old_file , $new_file , $file_permission);
于 2016-07-20T19:43:54.690 回答