mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 18:04:55 +01:00
11da2a6c9b
The purpose of this is to make it easier to maintain and eventually to allow the rclone backends to be re-used in other projects without having to use the rclone configuration system. The new code layout is documented in CONTRIBUTING.
51 lines
1.6 KiB
Go
51 lines
1.6 KiB
Go
package move
|
|
|
|
import (
|
|
"github.com/ncw/rclone/cmd"
|
|
"github.com/ncw/rclone/fs/sync"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Globals
|
|
var (
|
|
deleteEmptySrcDirs = false
|
|
)
|
|
|
|
func init() {
|
|
cmd.Root.AddCommand(commandDefintion)
|
|
commandDefintion.Flags().BoolVarP(&deleteEmptySrcDirs, "delete-empty-src-dirs", "", deleteEmptySrcDirs, "Delete empty source dirs after move")
|
|
}
|
|
|
|
var commandDefintion = &cobra.Command{
|
|
Use: "move source:path dest:path",
|
|
Short: `Move files from source to dest.`,
|
|
Long: `
|
|
Moves the contents of the source directory to the destination
|
|
directory. Rclone will error if the source and destination overlap and
|
|
the remote does not support a server side directory move operation.
|
|
|
|
If no filters are in use and if possible this will server side move
|
|
` + "`source:path`" + ` into ` + "`dest:path`" + `. After this ` + "`source:path`" + ` will no
|
|
longer longer exist.
|
|
|
|
Otherwise for each file in ` + "`source:path`" + ` selected by the filters (if
|
|
any) this will move it into ` + "`dest:path`" + `. If possible a server side
|
|
move will be used, otherwise it will copy it (server side if possible)
|
|
into ` + "`dest:path`" + ` then delete the original (if no errors on copy) in
|
|
` + "`source:path`" + `.
|
|
|
|
If you want to delete empty source directories after move, use the --delete-empty-src-dirs flag.
|
|
|
|
**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, fdst := cmd.NewFsSrcDst(args)
|
|
cmd.Run(true, true, command, func() error {
|
|
|
|
return sync.MoveDir(fdst, fsrc, deleteEmptySrcDirs)
|
|
})
|
|
},
|
|
}
|