Upplication / Amazon-S3-FileSystem-NIO2

An S3 File System Provider for Java 7
MIT License
122 stars 67 forks source link

Implement S3FileSystemProvider.move() simply with copy() and delete() #48

Closed heikkipora closed 9 years ago

heikkipora commented 9 years ago

Simple implementation of move/rename for files. Works for me at least :)

copy + delete seems to be the way Amazon recommends rename/move to be implemented anyway.

pditommaso commented 9 years ago

nifty!

heikkipora commented 9 years ago

@jarnaiz How about merging this one as well? :-) Is there something you would like to have or do differently where I could help? I'd like to go back using the official artifact instead of my fork and this is currently blocking it.

jarnaiz commented 9 years ago

@heikkipora Thanks for your PR :)

Im working on it, I'm adding tests and I'm implementing some edge cases, like move with the Atomic option and some others.