AWS S3: quickest way to upload image on s3

How to upload image to s3
 

following is the easiest way to upload image to s3 using ColdFusion

<cffile 
	action = "copy"
	destination = "s3://s3-key:s3-private-key@s3-bucket/someFolder/someImage.jpg" 
	source="/tmp/someImage.jpg"
	mode="777"
>

Tags:

Share:

Related posts