Rclone

Rclone

Manage files on over 70 different cloud storage products

Category
Cloud
License
MIT
Platforms
Windows macOS Linux
Released
2014
Path
c:\rclone\rclone.exe
Benefits
Has powerful cloud equivalents to the unix commands rsync, cp, mv, mount, ls, ncdu, tree, rm, and cat. Includes shell pipeline support and dry-run protection. Can operate as an API.
Version
Latest known: 1.74.3 (2026-06-05)

Examples

1. Copy an entire source directory to a remote S3 bucket/directory. Only new files older not already at the destination and older than 15 minutes and less than 7 days old are copied.

rclone.exe --min-age 15m --max-age 7d copyto d:\backup\ myS3Config:myBucket/mySubDir/

2. Move files older than 90 days to a remote S3 bucket/directory

rclone.exe --min-age 90d move d:\backup\ myS3Config:myBucket/mySubDir/

3. Mount the remote S3 bucket as local directory as a mountpoint. (Windows requires WinFsp.)

rclone.exe mount myS3Config:myBucket/mySubDir d:\myBucketSubDirMount

4. Mount the remote S3 bucket as UNC network drive as a mountpoint. (Windows requires WinFsp.)

rclone.exe mount myS3Config:myBucket/mySubDir \\cloud\remote

5. Generates modern blake3 hashes for all objects in the path. (Hash supports md5, sha1, whirlpool, crc32, sha256, sha512, blake3, xxh3, xxh128)

reclone.exe hashsum blake3 d:\uploadFiles

6. Moves all ZIP files older than 15 minutes to a Wasabi S3 bucket using security config from a local file.

rclone.exe move d:\uploads\ wasabipsi:myBucket/uploads/ --min-age 15m --no-traverse --include "*.zip" --ignore-case --config d:\rclone.conf