Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 plupload 1.4.2 将文件直接上传到 Amazon S3 存储桶。问题是,我怎样才能将它们直接上传到子文件夹?我应该在策略或 plupload 对象配置中配置哪些参数?
Amazon S3 没有“文件夹”或“子文件夹”的概念。只有对象。一个对象有一个“钥匙”。
如果您想将文件上传到文件夹或子文件夹,只需像这样放置对象键:
$key = "folder/subfolder/filename.extension";
Amazon S3 将创建“虚构”文件夹和子文件夹。