Rclone only shows the overall progress

What is the problem you are having with rclone?

Does rclone have a parameter that can output the overall progress percentage in the console, and does not output the details of the transfer progress of each file

I am using java to encapsulate rclone, but I want to use common-exec to execute the command to display the progress in real time, I do n’t know how to achieve it, because using the -P parameter will output too much

What is your rclone version (output from rclone version)

v1.51.0

Which OS you are using and how many bits (eg Windows 7, 64 bit)

Manjaro Linux 64bit

Which cloud storage system are you using? (eg Google Drive)

ftp

The command you were trying to run (eg rclone copy /tmp remote:tmp)

whatever

A log from the command with the -vv flag (eg output from rclone -vv copy /tmp remote:tmp)

try using -P --stats-one-line

This is a good way, but commons-exec in java can only push the command output to ouputstream, but because the output of the command is always changing, there will still be a lot of content in the outputstream

Another way would be to use --rc and query the status with the rc api

--rc It seems that it can solve my problem, I am researching, thank you very much

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