我正在尝试获取给定对象的最新版本。我尝试使用此功能listObjectVersions,但无法让它像我想要的那样工作。它列出了我存储桶中的所有文件及其版本。
$fileVersion = $s3Client->listObjectVersions([
'Bucket' => 'bucketname',
'Key' => 'folder/file.jpeg' // get all versions of this file. though, this doesn't work
]);
慕桂英3389331