|
Download rClone
https://rclone.org/b2/ Documentation: https://rclone.org/docs/ Configure Cloud Storage Copy to Clipboard
rclone.exe configCopy to Clipboard
rclone.exe sync "C:\Shares" rcloneb2profilename:bucketname/Shares --progress
Output log file options, you can pick how many details are included in the log files. In the below command, you can change 'DEBUG' to 'INFO', 'NOTICE', or 'ERROR'. DEBUG is equivalent to -vv. It outputs lots of debug info - useful for bug reports and really finding out what rclone is doing. INFO is equivalent to -v. It outputs information about each transfer and prints stats once a minute by default. NOTICE is the default log level if no logging flags are supplied. It outputs very little when things are working normally. It outputs warnings and significant events. ERROR is equivalent to -q. It only outputs error messages. Copy to Clipboard rclone.exe sync "C:\Users\username\Desktop" rcloneprofilename:b2bucketname/folder1/subfolder1 --log-file="c:\Users\username\rclone.log" --log-level debug |