diff --git a/drive/drive.go b/drive/drive.go index 034edd9de..eb65d24a4 100644 --- a/drive/drive.go +++ b/drive/drive.go @@ -695,6 +695,9 @@ func (f *Fs) Copy(src fs.Object, remote string) (fs.Object, error) { fs.Debug(src, "Can't copy - not same remote type") return nil, fs.ErrorCantCopy } + if srcObj.isDocument { + return nil, fmt.Errorf("Can't copy a Google document") + } o, createInfo, err := f.createFileInfo(remote, srcObj.ModTime(), srcObj.bytes) if err != nil { @@ -757,6 +760,9 @@ func (f *Fs) Move(src fs.Object, remote string) (fs.Object, error) { fs.Debug(src, "Can't move - not same remote type") return nil, fs.ErrorCantMove } + if srcObj.isDocument { + return nil, fmt.Errorf("Can't move a Google document") + } // Temporary FsObject under construction dstObj, dstInfo, err := f.createFileInfo(remote, srcObj.ModTime(), srcObj.bytes)