2016-08-04 04:36:28 +08:00
|
|
|
---
|
2020-02-01 18:31:42 +08:00
|
|
|
date: 2020-02-01T10:26:53Z
|
2016-08-04 04:36:28 +08:00
|
|
|
title: "rclone copy"
|
|
|
|
slug: rclone_copy
|
|
|
|
url: /commands/rclone_copy/
|
|
|
|
---
|
|
|
|
## rclone copy
|
|
|
|
|
|
|
|
Copy files from source to dest, skipping already copied
|
|
|
|
|
|
|
|
### Synopsis
|
|
|
|
|
|
|
|
|
|
|
|
Copy the source to the destination. Doesn't transfer
|
|
|
|
unchanged files, testing by size and modification time or
|
|
|
|
MD5SUM. Doesn't delete files from the destination.
|
|
|
|
|
|
|
|
Note that it is always the contents of the directory that is synced,
|
|
|
|
not the directory so when source:path is a directory, it's the
|
|
|
|
contents of source:path that are copied, not the directory name and
|
|
|
|
contents.
|
|
|
|
|
|
|
|
If dest:path doesn't exist, it is created and the source:path contents
|
|
|
|
go there.
|
|
|
|
|
|
|
|
For example
|
|
|
|
|
|
|
|
rclone copy source:sourcepath dest:destpath
|
|
|
|
|
|
|
|
Let's say there are two files in sourcepath
|
|
|
|
|
|
|
|
sourcepath/one.txt
|
|
|
|
sourcepath/two.txt
|
|
|
|
|
|
|
|
This copies them to
|
|
|
|
|
|
|
|
destpath/one.txt
|
|
|
|
destpath/two.txt
|
|
|
|
|
|
|
|
Not to
|
|
|
|
|
|
|
|
destpath/sourcepath/one.txt
|
|
|
|
destpath/sourcepath/two.txt
|
|
|
|
|
|
|
|
If you are familiar with `rsync`, rclone always works as if you had
|
|
|
|
written a trailing / - meaning "copy the contents of this directory".
|
|
|
|
This applies to all commands and whether you are talking about the
|
|
|
|
source or destination.
|
|
|
|
|
2019-02-09 18:42:57 +08: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
|
|
|
|
them change every day, you can to copy all the files which have
|
|
|
|
changed recently very efficiently like this:
|
|
|
|
|
|
|
|
rclone copy --max-age 24h --no-traverse /path/to/src remote:
|
|
|
|
|
2018-11-24 21:44:25 +08:00
|
|
|
**Note**: Use the `-P`/`--progress` flag to view real-time transfer statistics
|
|
|
|
|
2016-08-04 04:36:28 +08:00
|
|
|
|
|
|
|
```
|
2017-09-30 21:19:47 +08:00
|
|
|
rclone copy source:path dest:path [flags]
|
|
|
|
```
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
```
|
2019-04-13 18:01:58 +08:00
|
|
|
--create-empty-src-dirs Create empty source dirs on destination after copy
|
|
|
|
-h, --help help for copy
|
2016-08-04 04:36:28 +08:00
|
|
|
```
|
|
|
|
|
2019-06-20 23:18:02 +08:00
|
|
|
See the [global flags page](/flags/) for global options not listed here.
|
|
|
|
|
2016-08-04 04:36:28 +08:00
|
|
|
### SEE ALSO
|
|
|
|
|
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
|
|
|
|