Prioritizing some folders during the transfer

Is it possible using rclone to transfer folders in certain priority?
Like if remote 1 have 3 folders F1 F2 F3 and I want to copy them to remote 2 but want rclone to start with F2 until finished then start F3 then F1

Easiest way is to run 3 separate copy commands.

Ah I see so no built-in option to do that?
Maybe in the future?

Using 3 commands does exactly what you ask perfectly already.

You can bash it, like:

#!/bin/bash
rclone copy remote:f1 local:f1
rclone copy remote:f2 local:f2
rclone copy remote:f3 local:f3

Each copy (or any other command, like sync or mirror) will start after the previous finishes.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.