|
Download rClone
https://rclone.org/b2/ Documentation: https://rclone.org/docs/ Configure Cloud Storage Copy to Clipboard
rclone.exe configSync this local folder to a remote share and show the progress Copy to Clipboard
rclone.exe sync "C:\Shares" rcloneb2profilename:bucketname/Shares --progress
Show Config file location and other paths: Copy to Clipboard
rclone config pathsMount a remote folder as a drive letter (change * to X: if you want it to mount as the X: drive, or another path to an empty folder). To use this Mount feature you must install WinFSP first: https://winfsp.dev/rel/ Copy to Clipboard
rclone.exe mount b2remotesharename: *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 |