Would there be any issues with syncing an iCloud directory with a local on Mac?

I don’t want to use Mobius Sync on my iOS devices since it can’t continuously sync in the background. I’m thinking of syncing an iCloud directory with another folder on my Mac instead, and am wondering if there would be any issues with that. iCloud works differently from other cloud services where the files can’t stay offline, it seems like they’re streamed individually. Could there be lots of sync conflicts with iCloud and Syncthing? Another thing, I’m worried about if files disappear from iCloud, like get removed without me intentionally deleted them, would they then disappear from Syncthing?

Potentially its possible, I was doing so, just make sure you make exclusions:

// Portainer temp folder
portainer/compose/

// .stglobalignore

// Syncthing Ignore Patterns - https://docs.syncthing.net/users/ignoring.html#patterns:

// Useful .stignore Patterns - https://goo.gl/DVHI1h

// Usage: Add the line below to all .stignore files for each Syncthing node

// #include .stglobalignore

// Cache files and folders
**(?i)cache

// certificates files
**(?i)acme.json


// Firefox incomplete downloads
*.part

// Chrom(ium|e) incomplete downloads
*.crdownload

// Transmission incomplete downloads
*.part

// Temporary/Backup Files
*~
.*.swp

// LinuxOS-generated files
.directory
.Trash-*

// macOS-generated files
.DS_Store
.AppleDouble
.LSOverride

// Thumbnails (metadata)
._*

// Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.localized

// Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
.apdisk

// iCloud temp files
.iCloud*

// Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

// Dump file
*.stackdump

// Folder config file
[Dd]esktop.ini

// Recycle Bin used on file shares
$RECYCLE.BIN/

// Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

// Windows shortcuts
*.ln

// Microsoft Office temp files
(?d)~*

// BTSync files
.sync
*.bts
*.!Sync
.SyncID
.SyncIgnore
.SyncArchive
*.SyncPart
*.SyncTemp
*.SyncOld

// Synology files
@eaDir

// vim swap files
(?d)*.*.sw[a-p]

Where do i save this file exactly? I guess when i share a folder in the iCloud drive i don’t need all of them, correct me if i am wrong?

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