2017-01-02 23:30:34 +08:00
|
|
|
---
|
|
|
|
title: "rclone copyto"
|
2021-11-01 23:42:05 +08:00
|
|
|
description: "Copy files from source to dest, skipping identical files."
|
2017-01-02 23:30:34 +08:00
|
|
|
slug: rclone_copyto
|
|
|
|
url: /commands/rclone_copyto/
|
2020-02-10 20:31:45 +08:00
|
|
|
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/copyto/ 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 copyto
|
2017-01-02 23:30:34 +08:00
|
|
|
|
2021-11-01 23:42:05 +08:00
|
|
|
Copy files from source to dest, skipping identical files.
|
2017-01-02 23:30:34 +08:00
|
|
|
|
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 copies it to a file or
|
|
|
|
directory named dest:path.
|
|
|
|
|
|
|
|
This can be used to upload single files to other than their current
|
|
|
|
name. If the source is a directory then it acts exactly like the copy
|
|
|
|
command.
|
|
|
|
|
|
|
|
So
|
|
|
|
|
|
|
|
rclone copyto 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
|
|
|
|
copy it to dst, overwriting an existing file if it exists
|
|
|
|
if src is directory
|
|
|
|
copy it to dst, overwriting existing files if they exist
|
|
|
|
see copy command for full details
|
|
|
|
|
2021-11-01 23:42:05 +08:00
|
|
|
This doesn't transfer files that are identical on src and dst, testing
|
|
|
|
by size and modification time or MD5SUM. It doesn't delete files from
|
|
|
|
the destination.
|
2017-01-02 23:30:34 +08:00
|
|
|
|
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 copyto 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 copyto
|
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
|
|
|
|