rclone/docs/content/commands/rclone_moveto.md

63 lines
1.6 KiB
Markdown
Raw Normal View History

2017-01-02 16:30:34 +01:00
---
title: "rclone moveto"
description: "Move file or directory from source to dest."
2017-01-02 16:30:34 +01:00
slug: rclone_moveto
url: /commands/rclone_moveto/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/moveto/ and as part of making a release run "make commanddocs"
2017-01-02 16:30:34 +01:00
---
# rclone moveto
2017-01-02 16:30:34 +01:00
Move file or directory from source to dest.
## Synopsis
2017-01-02 16:30:34 +01:00
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 exactly
2022-07-09 19:08:20 +02:00
like the [move](/commands/rclone_move/) command.
2017-01-02 16:30:34 +01: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-11-01 16:42:05 +01: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.
2017-01-02 16:30:34 +01:00
**Important**: Since this can cause data loss, test first with the
2020-09-02 17:59:04 +02:00
`--dry-run` or the `--interactive`/`-i` flag.
2017-01-02 16:30:34 +01:00
2018-11-24 14:44:25 +01:00
**Note**: Use the `-P`/`--progress` flag to view real-time transfer statistics.
2017-01-02 16:30:34 +01:00
```
2017-09-30 15:19:47 +02:00
rclone moveto source:path dest:path [flags]
```
## Options
2017-09-30 15:19:47 +02:00
```
-h, --help help for moveto
2017-01-02 16:30:34 +01:00
```
See the [global flags page](/flags/) for global options not listed here.
## SEE ALSO
2017-01-02 16:30:34 +01:00
2018-10-15 12:03:08 +02:00
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
2018-03-19 11:06:13 +01:00