Reputation: 36148
Can I upload files into a specific folder in an S3 bucket rather than just uploading into the base folder of the bucket?
Upvotes: 3
Views: 773
Reputation: 2381
Yes, use the "path" parameter on the filepicker.store call.
filepicker.store(fpfile, {location:'S3', path:'myfolder/file.png'},
function(stored_fpfile){
console.log(stored_fpfile);
});
Documentation at https://developers.filepicker.io/docs/web/#store
Upvotes: 2