mirror of
https://github.com/rclone/rclone.git
synced 2024-11-21 16:03:29 +01:00
onedrive: fix server side copying over existing object
This was causing a conflict error. This was fixed by renaming the existing file first and if the copy was successful deleting it, or renaming it back.
This commit is contained in:
parent
ceea6753ee
commit
f307d929a8
@ -1609,7 +1609,7 @@ func (f *Fs) waitForJob(ctx context.Context, location string, o *Object) error {
|
|||||||
// Will only be called if src.Fs().Name() == f.Name()
|
// Will only be called if src.Fs().Name() == f.Name()
|
||||||
//
|
//
|
||||||
// If it isn't possible then return fs.ErrorCantCopy
|
// If it isn't possible then return fs.ErrorCantCopy
|
||||||
func (f *Fs) Copy(ctx context.Context, src fs.Object, remote string) (fs.Object, error) {
|
func (f *Fs) Copy(ctx context.Context, src fs.Object, remote string) (dst fs.Object, err error) {
|
||||||
srcObj, ok := src.(*Object)
|
srcObj, ok := src.(*Object)
|
||||||
if !ok {
|
if !ok {
|
||||||
fs.Debugf(src, "Can't copy - not same remote type")
|
fs.Debugf(src, "Can't copy - not same remote type")
|
||||||
@ -1624,11 +1624,18 @@ func (f *Fs) Copy(ctx context.Context, src fs.Object, remote string) (fs.Object,
|
|||||||
return nil, fs.ErrorCantCopy
|
return nil, fs.ErrorCantCopy
|
||||||
}
|
}
|
||||||
|
|
||||||
err := srcObj.readMetaData(ctx)
|
err = srcObj.readMetaData(ctx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Find and remove existing object
|
||||||
|
cleanup, err := operations.RemoveExisting(ctx, f, remote, "server side copy")
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer cleanup(&err)
|
||||||
|
|
||||||
// Check we aren't overwriting a file on the same remote
|
// Check we aren't overwriting a file on the same remote
|
||||||
if srcObj.fs == f {
|
if srcObj.fs == f {
|
||||||
srcPath := srcObj.rootPath()
|
srcPath := srcObj.rootPath()
|
||||||
|
Loading…
Reference in New Issue
Block a user