2017-01-02 23:30:34 +08:00
|
|
|
---
|
2020-05-22 18:17:37 +08:00
|
|
|
date: 2020-05-22T09:52:00+01:00
|
2017-01-02 23:30:34 +08:00
|
|
|
title: "rclone moveto"
|
2020-05-16 22:11:55 +08:00
|
|
|
description: "Move file or directory from source to dest."
|
2017-01-02 23:30:34 +08:00
|
|
|
slug: rclone_moveto
|
|
|
|
url: /commands/rclone_moveto/
|
2020-02-10 20:31:45 +08:00
|
|
|
# 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 23:30:34 +08:00
|
|
|
---
|
2020-05-22 18:17:37 +08:00
|
|
|
# rclone moveto
|
2017-01-02 23:30:34 +08:00
|
|
|
|
|
|
|
Move file or directory from source to dest.
|
|
|
|
|
2020-05-22 18:17:37 +08:00
|
|
|
## Synopsis
|
2017-01-02 23:30:34 +08: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
|
2019-05-11 06:18:45 +08:00
|
|
|
their existing name. If the source is a directory then it acts exactly
|
2017-01-02 23:30:34 +08:00
|
|
|
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.
|
|
|
|
|
2018-11-24 21:44:25 +08:00
|
|
|
**Note**: Use the `-P`/`--progress` flag to view real-time transfer statistics.
|
|
|
|
|
2017-01-02 23:30:34 +08:00
|
|
|
|
|
|
|
```
|
2017-09-30 21:19:47 +08:00
|
|
|
rclone moveto source:path dest:path [flags]
|
|
|
|
```
|
|
|
|
|
2020-05-22 18:17:37 +08:00
|
|
|
## Options
|
2017-09-30 21:19:47 +08:00
|
|
|
|
|
|
|
```
|
|
|
|
-h, --help help for moveto
|
2017-01-02 23:30:34 +08:00
|
|
|
```
|
|
|
|
|
2019-06-20 23:18:02 +08:00
|
|
|
See the [global flags page](/flags/) for global options not listed here.
|
|
|
|
|
2020-05-22 18:17:37 +08:00
|
|
|
## SEE ALSO
|
2017-01-02 23:30:34 +08:00
|
|
|
|
2018-10-15 18:03:08 +08:00
|
|
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
2018-03-19 18:06:13 +08:00
|
|
|
|