2016-10-23 18:34:17 +02:00
|
|
|
package moveto
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ncw/rclone/cmd"
|
|
|
|
"github.com/ncw/rclone/fs"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cmd.Root.AddCommand(commandDefintion)
|
|
|
|
}
|
|
|
|
|
|
|
|
var commandDefintion = &cobra.Command{
|
|
|
|
Use: "moveto source:path dest:path",
|
|
|
|
Short: `Move file or directory from source to dest.`,
|
|
|
|
Long: `
|
|
|
|
If source:path is a file or directory then it moves it to a file or
|
|
|
|
directory named dest:path.
|
|
|
|
|
|
|
|
This can be used to rename files or upload single files to other than
|
|
|
|
their existing name. If the source is a directory then it acts exacty
|
|
|
|
like the move command.
|
|
|
|
|
|
|
|
So
|
|
|
|
|
|
|
|
rclone moveto src dst
|
|
|
|
|
|
|
|
where src and dst are rclone paths, either remote:path or
|
|
|
|
/path/to/local or C:\windows\path\if\on\windows.
|
|
|
|
|
|
|
|
This will:
|
|
|
|
|
|
|
|
if src is file
|
|
|
|
move it to dst, overwriting an existing file if it exists
|
|
|
|
if src is directory
|
|
|
|
move it to dst, overwriting existing files if they exist
|
|
|
|
see move command for full details
|
|
|
|
|
|
|
|
This doesn't transfer unchanged files, testing by size and
|
|
|
|
modification time or MD5SUM. src will be deleted on successful
|
|
|
|
transfer.
|
|
|
|
|
|
|
|
**Important**: Since this can cause data loss, test first with the
|
|
|
|
--dry-run flag.
|
|
|
|
`,
|
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(2, 2, command, args)
|
|
|
|
fsrc, srcFileName, fdst, dstFileName := cmd.NewFsSrcDstFiles(args)
|
|
|
|
|
2016-12-04 17:52:24 +01:00
|
|
|
cmd.Run(true, true, command, func() error {
|
2016-10-23 18:34:17 +02:00
|
|
|
if srcFileName == "" {
|
2017-11-27 12:42:02 +01:00
|
|
|
return fs.MoveDir(fdst, fsrc, false)
|
2016-10-23 18:34:17 +02:00
|
|
|
}
|
|
|
|
return fs.MoveFile(fdst, fsrc, dstFileName, srcFileName)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|