Quantcast
Channel: How can I move (not copy) a file in AWS S3 using their sdk? - Stack Overflow
Browsing latest articles
Browse All 4 View Live

Answer by Mark J. Bobak for How can I move (not copy) a file in AWS S3 using...

I'm not at all familiar w/ the JavaScript SDK that you're using, but using aws cli, there is:aws s3 mv s3://bucket/folder/file s3://bucket/folder2/filethat seems it would do what you want. Not sure...

View Article



Answer by Klaycon for How can I move (not copy) a file in AWS S3 using their...

Based on the answer here: AWS S3 - Move an object to a different folder in which user @Michael-sqlbot comments:That's because S3, itself, doesn't have an atomic move or rename operation... so there...

View Article

Answer by Dennis Traub for How can I move (not copy) a file in AWS S3 using...

Amazon S3 doesn’t provide an API to move or rename an object from one bucket to another in a single step.As in your example, you can use copyObject with deleteObject to move or rename an object, by...

View Article

How can I move (not copy) a file in AWS S3 using their sdk?

I need to move a file in AWS s3 bucket to another location, example:From: http://aws.xxxxx/xxxx/locationA/file.pngTo: http://aws.xxxxx/xxxx/locationB/file.pngI've looked over the documentation:...

View Article
Browsing latest articles
Browse All 4 View Live




Latest Images