2022-08-28 13:21:57 +02:00
|
|
|
// Package moveto provides the moveto command.
|
2016-10-23 18:34:17 +02:00
|
|
|
package moveto
|
|
|
|
|
|
|
|
import (
|
2019-06-17 10:34:30 +02:00
|
|
|
"context"
|
|
|
|
|
2019-07-28 19:47:38 +02:00
|
|
|
"github.com/rclone/rclone/cmd"
|
|
|
|
"github.com/rclone/rclone/fs/operations"
|
|
|
|
"github.com/rclone/rclone/fs/sync"
|
2016-10-23 18:34:17 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-10-11 17:58:11 +02:00
|
|
|
cmd.Root.AddCommand(commandDefinition)
|
2016-10-23 18:34:17 +02:00
|
|
|
}
|
|
|
|
|
2019-10-11 17:58:11 +02:00
|
|
|
var commandDefinition = &cobra.Command{
|
2016-10-23 18:34:17 +02:00
|
|
|
Use: "moveto source:path dest:path",
|
|
|
|
Short: `Move file or directory from source to dest.`,
|
2024-08-12 18:17:46 +02:00
|
|
|
Long: `If source:path is a file or directory then it moves it to a file or
|
2016-10-23 18:34:17 +02:00
|
|
|
directory named dest:path.
|
|
|
|
|
|
|
|
This can be used to rename files or upload single files to other than
|
2019-04-30 14:06:24 +02:00
|
|
|
their existing name. If the source is a directory then it acts exactly
|
2022-06-19 15:51:37 +02:00
|
|
|
like the [move](/commands/rclone_move/) command.
|
2016-10-23 18:34:17 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2021-08-19 17:34:57 +02:00
|
|
|
This doesn't transfer files that are identical on src and dst, testing
|
|
|
|
by size and modification time or MD5SUM. src will be deleted on
|
|
|
|
successful transfer.
|
2016-10-23 18:34:17 +02:00
|
|
|
|
|
|
|
**Important**: Since this can cause data loss, test first with the
|
2020-06-05 18:04:23 +02:00
|
|
|
` + "`--dry-run` or the `--interactive`/`-i`" + ` flag.
|
2018-10-21 11:51:41 +02:00
|
|
|
|
|
|
|
**Note**: Use the ` + "`-P`" + `/` + "`--progress`" + ` flag to view real-time transfer statistics.
|
2016-10-23 18:34:17 +02:00
|
|
|
`,
|
2022-11-26 23:40:49 +01:00
|
|
|
Annotations: map[string]string{
|
|
|
|
"versionIntroduced": "v1.35",
|
2023-07-10 19:34:10 +02:00
|
|
|
"groups": "Filter,Listing,Important,Copy",
|
2022-11-26 23:40:49 +01:00
|
|
|
},
|
2016-10-23 18:34:17 +02:00
|
|
|
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 == "" {
|
2019-06-17 10:34:30 +02:00
|
|
|
return sync.MoveDir(context.Background(), fdst, fsrc, false, false)
|
2016-10-23 18:34:17 +02:00
|
|
|
}
|
2019-06-17 10:34:30 +02:00
|
|
|
return operations.MoveFile(context.Background(), fdst, fsrc, dstFileName, srcFileName)
|
2016-10-23 18:34:17 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|