Is there a way to use a BAT file to Rclone 2 copy processes

Sorry if this is the wrong category.

I currently have this

rclone copy "Z:\Movies" "Other:\Movies" --max-transfer 100G --ignore-existing --transfers=2 --fast-list --max-backlog 20000 --log-level INFO

rclone sync "Z:\Shows" "Other:\Shows" --max-transfer 500G --transfers=2 --fast-list --max-backlog 20000 --log-level INFO

I would like to have it say copy movies up to 600G and the rest to shows. So that I don't have to guess how much for each one.

for instance one day it may copy 50G to Movies and 550G to shows based on how many movies ar e needing to be transferred

to copy 600GB of movies,
rclone copy "Z:\Movies" "Other:\Movies" --max-transfer 600G

Guessing you are using google drive, how about

rclone copy "Z:\Movies" "Other:\Movies" --max-transfer 600G --ignore-existing --transfers=2 --fast-list --max-backlog 20000 --log-level INFO

rclone sync "Z:\Shows" "Other:\Shows" --drive-stop-on-upload-limit --transfers=2 --fast-list --max-backlog 20000 --log-level INFO

Which will transfer up to 500G in the first command then use the rest of your quota in the second.

1 Like

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