github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/docs/content/commands/rclone_copyto.md (about) 1 --- 2 date: 2019-06-20T16:09:42+01:00 3 title: "rclone copyto" 4 slug: rclone_copyto 5 url: /commands/rclone_copyto/ 6 --- 7 ## rclone copyto 8 9 Copy files from source to dest, skipping already copied 10 11 ### Synopsis 12 13 14 If source:path is a file or directory then it copies it to a file or 15 directory named dest:path. 16 17 This can be used to upload single files to other than their current 18 name. If the source is a directory then it acts exactly like the copy 19 command. 20 21 So 22 23 rclone copyto src dst 24 25 where src and dst are rclone paths, either remote:path or 26 /path/to/local or C:\windows\path\if\on\windows. 27 28 This will: 29 30 if src is file 31 copy it to dst, overwriting an existing file if it exists 32 if src is directory 33 copy it to dst, overwriting existing files if they exist 34 see copy command for full details 35 36 This doesn't transfer unchanged files, testing by size and 37 modification time or MD5SUM. It doesn't delete files from the 38 destination. 39 40 **Note**: Use the `-P`/`--progress` flag to view real-time transfer statistics 41 42 43 ``` 44 rclone copyto source:path dest:path [flags] 45 ``` 46 47 ### Options 48 49 ``` 50 -h, --help help for copyto 51 ``` 52 53 See the [global flags page](/flags/) for global options not listed here. 54 55 ### SEE ALSO 56 57 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 58