rclone/docs/content/commands/rclone_copyto.md

58 lines
1.3 KiB
Markdown
Raw Normal View History

2017-01-02 16:30:34 +01:00
---
2019-06-15 13:01:29 +02:00
date: 2019-06-15T12:00:42+01:00
2017-01-02 16:30:34 +01:00
title: "rclone copyto"
slug: rclone_copyto
url: /commands/rclone_copyto/
---
## rclone copyto
Copy files from source to dest, skipping already copied
### Synopsis
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
This doesn't transfer unchanged files, testing by size and
modification time or MD5SUM. It doesn't delete files from the
destination.
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 copyto source:path dest:path [flags]
```
### Options
```
-h, --help help for copyto
2017-01-02 16:30:34 +01:00
```
### SEE ALSO
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
2019-06-15 13:01:29 +02:00
###### Auto generated by spf13/cobra on 15-Jun-2019