2016-08-05 18:12:27 +02:00
|
|
|
package copy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ncw/rclone/cmd"
|
2018-05-07 19:13:17 +02:00
|
|
|
"github.com/ncw/rclone/fs/operations"
|
2018-01-12 17:30:54 +01:00
|
|
|
"github.com/ncw/rclone/fs/sync"
|
2016-08-05 18:12:27 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2016-10-22 13:05:45 +02:00
|
|
|
cmd.Root.AddCommand(commandDefintion)
|
2016-08-05 18:12:27 +02:00
|
|
|
}
|
|
|
|
|
2016-10-22 13:05:45 +02:00
|
|
|
var commandDefintion = &cobra.Command{
|
2016-08-05 18:12:27 +02:00
|
|
|
Use: "copy source:path dest:path",
|
|
|
|
Short: `Copy files from source to dest, skipping already copied`,
|
|
|
|
Long: `
|
|
|
|
Copy the source to the destination. Doesn't transfer
|
|
|
|
unchanged files, testing by size and modification time or
|
|
|
|
MD5SUM. Doesn't delete files from the destination.
|
|
|
|
|
|
|
|
Note that it is always the contents of the directory that is synced,
|
|
|
|
not the directory so when source:path is a directory, it's the
|
|
|
|
contents of source:path that are copied, not the directory name and
|
|
|
|
contents.
|
|
|
|
|
|
|
|
If dest:path doesn't exist, it is created and the source:path contents
|
|
|
|
go there.
|
|
|
|
|
|
|
|
For example
|
|
|
|
|
|
|
|
rclone copy source:sourcepath dest:destpath
|
|
|
|
|
|
|
|
Let's say there are two files in sourcepath
|
|
|
|
|
|
|
|
sourcepath/one.txt
|
|
|
|
sourcepath/two.txt
|
|
|
|
|
|
|
|
This copies them to
|
|
|
|
|
|
|
|
destpath/one.txt
|
|
|
|
destpath/two.txt
|
|
|
|
|
|
|
|
Not to
|
|
|
|
|
|
|
|
destpath/sourcepath/one.txt
|
|
|
|
destpath/sourcepath/two.txt
|
|
|
|
|
2016-10-23 18:34:17 +02:00
|
|
|
If you are familiar with ` + "`rsync`" + `, rclone always works as if you had
|
2016-08-05 18:12:27 +02:00
|
|
|
written a trailing / - meaning "copy the contents of this directory".
|
|
|
|
This applies to all commands and whether you are talking about the
|
|
|
|
source or destination.
|
|
|
|
`,
|
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(2, 2, command, args)
|
2018-05-07 19:13:17 +02:00
|
|
|
fsrc, srcFileName, fdst := cmd.NewFsSrcFileDst(args)
|
2016-12-04 17:52:24 +01:00
|
|
|
cmd.Run(true, true, command, func() error {
|
2018-05-07 19:13:17 +02:00
|
|
|
if srcFileName == "" {
|
|
|
|
return sync.CopyDir(fdst, fsrc)
|
|
|
|
}
|
|
|
|
return operations.CopyFile(fdst, fsrc, srcFileName, srcFileName)
|
2016-08-05 18:12:27 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|