如何通过 POST 将文件上传到 Amazon S3 存储桶子文件夹?

发布于 2024-10-28 12:02:37 字数 98 浏览 2 评论 0原文

我使用 plupload 1.4.2 将文件直接上传到 Amazon S3 存储桶。那么问题来了,如何直接上传到子文件夹呢?我应该在策略或 plupload 对象配置中配置哪些参数?

I'm using plupload 1.4.2 to upload files directly to an Amazon S3 bucket. The question is, how can I upload them to a subfolder directly? What parameters should I configure in the policy or plupload object config?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月下伊人醉 2024-11-04 12:02:37

Amazon S3 没有文件夹或子文件夹的概念。只有对象。一个对象有一个键。

如果您想将文件上传到文件夹或子文件夹,只需像这样输入对象键:

$key = "folder/subfolder/filename.extension";

Amazon S3 将创建(虚构的)文件夹和子文件夹。

Amazon S3 there is no concept of folder or subfolder. Only objects. And an object has a key.

If you wanna upload a file to a folder or subfolder, simply put the object key like this:

$key = "folder/subfolder/filename.extension";

And Amazon S3 will create the (imaginary) folder(s) and subfolder(s).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文