icloud

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

  1. Open Terminal.
  2. 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*"
  3. 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:

  1. Kill the sync daemon:
    killall bird
  2. 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

  1. Open Command Prompt (Admin).
  2. 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:

  1. 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:

  1. Navigate to the local package folder:
    cd "%LOCALAPPDATA%\Packages\AppleInc.iCloud_sr379ee5v9y2t\LocalState"
  2. Search for the folder name:
    dir /s /b /ad *YourFolder*
  3. 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:

  1. Open your web browser and sign in to iCloud.com.
  2. Go to Account Settings or scroll to the bottom of the page and click Data Recovery.
  3. Select Restore Folders or Restore Files.
  4. Select the folder you wish to recover and click Restore.

5. Summary Checklist for iCloud Folder Missing

Problem AreamacOS Action CommandWindows Action CommandExpected Outcome
Locate Folderfind ~/Library/Mobile\ Documents/ -name "*[Folder]*"dir /s /ad *[Folder]*Finds directories hidden in system caches.
Reset Indexrm -rf ~/Library/Application\ Support/CloudDocsN/ARebuilds the directory structure index.
Reset AttributesN/Aattrib -h -s ... /s /dRestores visibility to hidden Windows folders.
Restart Daemonkillall birdtaskkill /f /im iCloudDrive.exeRefreshes the sync client.
Web RecoveryRestore via icloud.com web portalRestore via icloud.com web portalRestores folders deleted within 30 days.
Shared FoldersRe-accept invitation linkRe-accept invitation linkRestores guest folders with expired tokens.