We figured out the root cause, which has to do with ownership of the files and folders. A workaround that I have tested is to add ACLs for you that are applied to all files and folders on the drive. I would recommend starting with a small directory you want to unsync, just to make sure it works the way we expect.
The command you will run is:
sudo chmod -R +a “$(whoami) allow read,write,delete,readattr,writeattr,readsecurity,writesecurity” “path/to/folder”
If we were going to try this on a test folder, we could send the following command:
sudo chmod -R +a “$(whoami) allow read,write,delete,readattr,writeattr,readsecurity,writesecurity” “/Volumes/Data/Libre/Libre’s Cloud/4 STAR DISTRUBTION/Axion”
Please let me know if you have any questions on the above.
Thanks!