My initial rclone setup is working fine but I need to get more granular on my commands for bandwidth flexibility.
Initial command:
rclone sync /Test/Backup Bucket:Backup
This worked great, except using "Backup" as a catch all folder resulted in a size causing me to bump my ISP data cap. So now I want to get more granular with the commands but am trying to not have to reupload everything.
The folder structure example (forgive my horrid formatting):
Backup/Folder 1
Backup/Folder 2/Folder 2A
Backup/Folder 2/Folder 2B
Backup/Folder 3
I would now like to make my command:
rclone sync /Test/Backup/Folder 1
rclone sync /Test/Backup/Folder2/Folder 2A
You get the idea.
The files and folder names are encrypted through Rclone. Can I make the new command:
rclone sync /Test/Backup/Folder 1 Bucket:Folder 1
Will that work? Or do I use the encrypted folder name? Or wipe it and start over?