2016-08-03 22:36:28 +02:00
|
|
|
---
|
|
|
|
title: "rclone copy"
|
2021-11-01 16:42:05 +01:00
|
|
|
description: "Copy files from source to dest, skipping identical files."
|
2016-08-03 22:36:28 +02:00
|
|
|
slug: rclone_copy
|
|
|
|
url: /commands/rclone_copy/
|
2020-02-10 13:31:45 +01:00
|
|
|
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/copy/ and as part of making a release run "make commanddocs"
|
2016-08-03 22:36:28 +02:00
|
|
|
---
|
2020-05-22 12:17:37 +02:00
|
|
|
# rclone copy
|
2016-08-03 22:36:28 +02:00
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
Copy files from source to dest, skipping identical files.
|
2016-08-03 22:36:28 +02:00
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## Synopsis
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
Copy the source to the destination. Does not transfer files that are
|
|
|
|
identical on source and destination, testing by size and modification
|
2022-07-09 19:08:20 +02:00
|
|
|
time or MD5SUM. Doesn't delete files from the destination. If you
|
|
|
|
want to also delete files from destination, to make it match source,
|
|
|
|
use the [sync](/commands/rclone_sync/) command instead.
|
2016-08-03 22:36:28 +02:00
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
Note that it is always the contents of the directory that is synced,
|
2022-07-09 19:08:20 +02:00
|
|
|
not the directory itself. So when source:path is a directory, it's the
|
2021-11-01 16:42:05 +01:00
|
|
|
contents of source:path that are copied, not the directory name and
|
|
|
|
contents.
|
2016-08-03 22:36:28 +02:00
|
|
|
|
2022-07-09 19:08:20 +02:00
|
|
|
To copy single files, use the [copyto](/commands/rclone_copyto/)
|
|
|
|
command instead.
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
If dest:path doesn't exist, it is created and the source:path contents
|
|
|
|
go there.
|
|
|
|
|
|
|
|
For example
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
rclone copy source:sourcepath dest:destpath
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
Let's say there are two files in sourcepath
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
sourcepath/one.txt
|
|
|
|
sourcepath/two.txt
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
This copies them to
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
destpath/one.txt
|
|
|
|
destpath/two.txt
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
Not to
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
destpath/sourcepath/one.txt
|
|
|
|
destpath/sourcepath/two.txt
|
|
|
|
|
|
|
|
If you are familiar with `rsync`, rclone always works as if you had
|
2021-02-02 14:42:35 +01:00
|
|
|
written a trailing `/` - meaning "copy the contents of this directory".
|
2016-08-03 22:36:28 +02:00
|
|
|
This applies to all commands and whether you are talking about the
|
|
|
|
source or destination.
|
|
|
|
|
2019-02-09 11:42:57 +01:00
|
|
|
See the [--no-traverse](/docs/#no-traverse) option for controlling
|
|
|
|
whether rclone lists the destination directory or not. Supplying this
|
|
|
|
option when copying a small number of files into a large destination
|
|
|
|
can speed transfers up greatly.
|
|
|
|
|
|
|
|
For example, if you have many files in /path/to/src but only a few of
|
2020-05-16 16:11:55 +02:00
|
|
|
them change every day, you can copy all the files which have changed
|
|
|
|
recently very efficiently like this:
|
2019-02-09 11:42:57 +01:00
|
|
|
|
|
|
|
rclone copy --max-age 24h --no-traverse /path/to/src remote:
|
|
|
|
|
2020-09-02 17:59:04 +02:00
|
|
|
**Note**: Use the `-P`/`--progress` flag to view real-time transfer statistics.
|
|
|
|
|
|
|
|
**Note**: Use the `--dry-run` or the `--interactive`/`-i` flag to test without copying anything.
|
2018-11-24 14:44:25 +01:00
|
|
|
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
```
|
2017-09-30 15:19:47 +02:00
|
|
|
rclone copy source:path dest:path [flags]
|
|
|
|
```
|
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## Options
|
2017-09-30 15:19:47 +02:00
|
|
|
|
|
|
|
```
|
2019-04-13 12:01:58 +02:00
|
|
|
--create-empty-src-dirs Create empty source dirs on destination after copy
|
|
|
|
-h, --help help for copy
|
2016-08-03 22:36:28 +02:00
|
|
|
```
|
|
|
|
|
2019-06-20 17:18:02 +02:00
|
|
|
See the [global flags page](/flags/) for global options not listed here.
|
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## SEE ALSO
|
2016-08-03 22:36:28 +02: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
|
|
|
|