iCloud Folder Missing
Resolution Checklist
- 1 Understand folder synchronization failures
- 2 macOS: Search local folder containers and force index
- 3 Windows: Fix directory path mappings and attributes
- 4 Recover folders from the iCloud Drive online portal
- 5 Summary Checklist for iCloud Folder Missing
iCloud Folder Missing
When a folder goes missing from your local iCloud Drive directory, the directory structure has failed to sync, a deletion was synchronized from another device, or the local clientโs cache database is corrupted.
This guide provides steps to locate missing folders in local system containers, fix directory mapping flags, and restore deleted folders from the iCloud cloud backup.
1. Understand folder synchronization failures
Folder mapping failures are typically caused by:
- Corrupted FileProvider Domain: The directory structure is missing from Finder/File Explorer because the local operating system has lost track of the iCloud namespace.
- Shared Folder Invitation Expiration: Shared folders may disappear if the owner terminates sharing or if your guest access token expires.
- Incorrect Directory Attributes: Folders can be marked as system-hidden, preventing the OS file manager from displaying them.
2. macOS: Search local folder containers and force index
On macOS, folders can sometimes be found in the raw sandbox directories even if Finder is not displaying them.
Step 1: Browse the Raw iCloud Mobile Documents Directory
- Open Terminal.
- Run this command to search for the missing folder name in the raw iCloud system directory:
find ~/Library/Mobile\ Documents/ -maxdepth 3 -type d -name "*YourFolder*" - If the folder is found, copy it to your local Desktop to prevent data loss:
cp -R "~/Library/Mobile Documents/com~apple~Clouddocs/YourFolder" ~/Desktop/
Step 2: Force-Register the CloudDocs Daemon
If the folder is present in iCloud web but missing in Finder, restart the sync daemon to force a directory crawl:
- Kill the sync daemon:
killall bird - Delete the local indexing database (this forces a clean sync without deleting actual files):
rm -rf ~/Library/Application\ Support/CloudDocs
3. Windows: Fix directory path mappings and attributes
On Windows, virtual folders can disappear due to attribute errors or process hangs.
Step 1: Force Close and Reset iCloud Processes
- Open Command Prompt (Admin).
- Force close the iCloud processes:
taskkill /f /im iCloudDrive.exe /im iCloudServices.exe /im iCloud.exe
Step 2: Unhide System Directories
If the folder is marked as hidden or restricted:
- Reset the attributes of the iCloud Drive directory:
attrib -h -s "%USERPROFILE%\iCloudDrive\*.*" /s /d
Step 3: Check for the Folder in the Apple Inc. AppData Path
If you are using the Microsoft Store version of iCloud:
- Navigate to the local package folder:
cd "%LOCALAPPDATA%\Packages\AppleInc.iCloud_sr379ee5v9y2t\LocalState" - Search for the folder name:
dir /s /b /ad *YourFolder* - Relaunch the iCloud client from the Start Menu.
4. Recover folders from the iCloud Drive online portal
If the folder was deleted, you can recover it within 30 days of deletion:
- Open your web browser and sign in to iCloud.com.
- Go to Account Settings or scroll to the bottom of the page and click Data Recovery.
- Select Restore Folders or Restore Files.
- Select the folder you wish to recover and click Restore.
5. Summary Checklist for iCloud Folder Missing
| Problem Area | macOS Action Command | Windows Action Command | Expected Outcome |
|---|---|---|---|
| Locate Folder | find ~/Library/Mobile\ Documents/ -name "*[Folder]*" | dir /s /ad *[Folder]* | Finds directories hidden in system caches. |
| Reset Index | rm -rf ~/Library/Application\ Support/CloudDocs | N/A | Rebuilds the directory structure index. |
| Reset Attributes | N/A | attrib -h -s ... /s /d | Restores visibility to hidden Windows folders. |
| Restart Daemon | killall bird | taskkill /f /im iCloudDrive.exe | Refreshes the sync client. |
| Web Recovery | Restore via icloud.com web portal | Restore via icloud.com web portal | Restores folders deleted within 30 days. |
| Shared Folders | Re-accept invitation link | Re-accept invitation link | Restores guest folders with expired tokens. |