XL/Multipart: rename the parts instead of concatenating. (#1416)

This commit is contained in:
Krishna Srinivas
2016-04-30 00:47:48 +05:30
committed by Harshavardhana
parent 39df425b2a
commit 7066ce5160
6 changed files with 139 additions and 27 deletions

View File

@@ -32,4 +32,5 @@ type StorageAPI interface {
CreateFile(volume string, path string) (writeCloser io.WriteCloser, err error)
StatFile(volume string, path string) (file FileInfo, err error)
DeleteFile(volume string, path string) (err error)
RenameFile(srcVolume, srcPath, dstVolume, dstPath string) error
}