icloud Code 4035
How to Fix iCloud Error 4035
Diagnostic Procedures
- 1 What Causes iCloud Error 4035
- 2 Fix Local File System Permissions on macOS
- 3 Fix iCloud Drive Permissions on Windows
- 4 Resolve Shared Folder Access Issues
- 5 Reset iCloud Drive and Rebuild Permissions
How to Fix iCloud Error 4035
iCloud error 4035 appears when iCloud Drive cannot read from or write to a folder due to permission restrictions. The error reads “Permission denied. Unable to access the specified folder (Error 4035).”
Step 1: What Causes iCloud Error 4035
- Local file system permissions preventing the iCloud Drive daemon from accessing folders
- macOS Full Disk Access not granted to iCloud services
- Shared folder permissions set to read-only by the folder owner
- Corrupted ACL entries on iCloud Drive directories
- Windows NTFS permissions conflicting with iCloud for Windows requirements
Step 2: Fix Local File System Permissions on macOS
- Navigate to
~/Library/Mobile Documents/com~apple~CloudDocsin Finder - Right-click > Get Info and ensure your user has Read & Write access
# Fix permissions on the iCloud Drive folder
chmod -R u+rw ~/Library/Mobile\ Documents/com~apple~CloudDocs
# Reset ACLs
chmod -RN ~/Library/Mobile\ Documents/com~apple~CloudDocs
Grant Full Disk Access:
- Open System Settings > Privacy & Security > Full Disk Access
- Ensure bird and cloudd are listed and enabled (navigate to /System/Library/CoreServices/)
Step 3: Fix iCloud Drive Permissions on Windows
- Right-click the affected folder in iCloud Drive > Properties > Security tab
- Click Edit and ensure your user account has Full Control
:: Reset permissions on iCloud Drive folder
icacls "%UserProfile%\iCloudDrive" /reset /t /c
icacls "%UserProfile%\iCloudDrive" /grant "%USERNAME%":F /t
Check Controlled Folder Access:
- Open Windows Security > Virus & threat protection > Ransomware protection
- If enabled, add iCloudDrive.exe and iCloudServices.exe to the allowed list
Step 4: Resolve Shared Folder Access Issues
If error 4035 affects a shared iCloud Drive folder, permissions are controlled by the owner.
- Right-click the shared folder in Finder > Manage Shared Folder
- Check your permission level — it may be set to View Only
- Contact the owner and ask them to change your access to Can Make Changes
If you are the owner:
- Right-click the shared folder > Manage Shared Folder
- Click each participant’s name and select Can Make Changes
- For link-shared folders, change the link permission from view-only to edit
Step 5: Reset iCloud Drive and Rebuild Permissions
As a last resort, reset iCloud Drive to force a clean permission rebuild.
On macOS:
- Open System Settings > Apple ID > iCloud and uncheck iCloud Drive
- Choose Keep on Mac when prompted
rm -rf ~/Library/Application\ Support/CloudDocs/
rm -rf ~/Library/Caches/CloudKit/
killall bird && killall cloudd
- Restart your Mac and re-enable iCloud Drive
On Windows:
- Uncheck iCloud Drive in iCloud for Windows > Apply
- Clear the cache:
rd /s /q "%LocalAppData%\Apple Inc\iCloudDrive" - Restart, re-check iCloud Drive, and click Apply
Tip: Avoid using terminal commands to change ownership of files inside iCloud Drive. iCloud expects specific permission structures, and manual ownership changes can cause persistent sync failures.