onedrive

OneDrive Folder Missing

Resolution Checklist

  • 1 Understand why a OneDrive folder went missing
  • 2 Recover folders from the cloud Recycle Bin
  • 3 Locate mislocated folders on Windows
  • 4 Locate mislocated folders on macOS
  • 5 Verify shared folder ownership and permissions
  • 6 Summary Checklist

OneDrive Folder Missing

When a OneDrive folder goes missing, it can feel alarming. In most cases, the folder has not been permanently deleted. Instead, it has likely been unchecked in your selective sync settings, accidentally dragged into a neighboring folder, or deleted from another synced device and moved to the Recycle Bin.

This guide walk you through how to locate, restore, and re-sync missing folders on Windows and macOS.


Understand why a OneDrive folder went missing

Folders disappear from local file managers or cloud panels due to these common triggers:

  1. Accidental Relocation (Drag-and-Drop): A user accidentally drags a folder into an adjacent directory while browsing in File Explorer or Finder.
  2. Selective Sync Deselection: The folder was unchecked in the OneDrive settings menu, hiding it from the local device while preserving it in the cloud.
  3. Remote Deletion: Another user with access to a shared folder deleted it, or it was deleted from a secondary device, triggering a sync deletion.
  4. Account Delinking: The OneDrive app has lost its authentication profile or is signed into a different account, showing an empty root directory.

Recover folders from the cloud Recycle Bin

If a folder was deleted, it will remain in Microsoft’s cloud-side trash bin for 30 days (personal accounts) or 93 days (work/school accounts).

1. Check the First-Stage Recycle Bin

  1. Sign in to the OneDrive Web Portal.
  2. Click Recycle bin in the left navigation panel.
  3. Locate your missing folder, select it, and click Restore at the top of the screen.

2. Check the Second-Stage Recycle Bin (Work/School Accounts)

If the folder is not in the primary Recycle Bin, scroll to the bottom of the page and click the Second-stage recycle bin link. If you find the folder there, select it and restore it.


Locate mislocated folders on Windows

If you suspect the folder was accidentally dragged into a different directory on Windows, use PowerShell to run an exhaustive local directory search.

1. Search the OneDrive Directory Tree

Open PowerShell and search for the missing directory (replace TargetFolder with the name of your folder):

Get-ChildItem -Path "$env:USERPROFILE\OneDrive" -Recurse -Directory -Filter "*TargetFolder*" -ErrorAction SilentlyContinue | Select-Object FullName

2. Verify Selective Sync Configuration

Ensure the folder isn’t simply hidden by selective sync:

  1. Click the OneDrive cloud icon, click the Gear Icon, and select Settings.
  2. Go to the Account tab and click Choose folders.
  3. Locate the missing folder and verify that its checkbox is ticked.

Locate mislocated folders on macOS

On macOS, you can scan your local FileProvider mount point to see if the directory was relocated.

1. Locate the Folder using Terminal

Open Terminal and run the search script (replace TargetFolder with the directory name):

find ~/Library/CloudStorage/OneDrive-Personal -type d -iname "*TargetFolder*" 2>/dev/null

(For Business accounts, replace OneDrive-Personal with OneDrive-Shared or your business tenant name).

2. Search the Local macOS Trash

If the folder was deleted locally, check the macOS Trash. Open Terminal and search the local trash directory:

find ~/.Trash -type d -name "*TargetFolder*" 2>/dev/null

Verify shared folder ownership and permissions

If the missing folder was shared with you by another user, its visibility depends on their sharing status:

  1. Check the “Shared” Tab: In the OneDrive Web Portal, click the Shared tab in the left sidebar.
  2. Verify Access Status: If the owner stopped sharing the folder or deleted it from their personal OneDrive, it will disappear from your panel.
  3. Re-add Shared Folders to Your OneDrive: For shared folders, ensure you have clicked the “Add shortcut to My Files” button in the web interface to make them visible in your local File Explorer or Finder.

Summary Checklist

Action ItemVerification MethodStatus
Check Web Recycle BinLog in online and search both primary and second-stage Recycle Bins[ ]
Verify Selective SyncConfirm folder is checked in OneDrive Choose folders settings[ ]
Scan Directory TreeRun PowerShell/Terminal search script to find misplaced paths[ ]
Inspect Shared TabConfirm the folder is still shared with your account online[ ]
Create Folder ShortcutClick Add shortcut to My Files for shared cloud folders[ ]