SharePoint Folder Missing
Resolution Checklist
- 1 Understand SharePoint Folder Missing Errors
- 2 Check SharePoint Web Search and Views
- 3 Locate Moved or Deleted Folders (Audit Log)
- 4 Restore Synced Folder Issues on Windows
- 5 Restore Synced Folder Issues on macOS
- 6 Summary Checklist for Missing Folders
SharePoint Folder Missing
It is a common scenario for a vital folder structure in a SharePoint document library to suddenly disappear. Users may report that a folder has vanished, leaving only a few files or empty directories.
This guide outlines why folders go missing, how to track down relocated or deleted items, and how to resolve synchronization issues affecting synced folders on Windows and macOS.
1. Understand SharePoint Folder Missing Errors
When a folder vanishes, it is typically caused by one of five triggers:
- Accidental Relocation (Drag-and-Drop): When users navigate folders in Windows Explorer or macOS Finder via OneDrive sync, a slip of the mouse can drag a parent folder into a neighboring subfolder. The folder isn’t deleted; it is simply nested elsewhere.
- Accidental Deletion via Sync Client: If a user deletes a synced folder locally on their desktop, the OneDrive sync engine syncs this deletion to SharePoint, removing it for all users.
- Custom View Filtering: SharePoint library views can be configured with filters. If someone modifies the default view (e.g., filtering out items with specific metadata or setting a limit on items), the folder might exist but be hidden from view.
- Permission Inheritance Breakage: A site owner may have stopped inheriting permissions on a folder and restricted its access. Users removed from the permission list will find the folder has instantly vanished.
- Selective Sync Configuration: The folder may exist on the server but is unchecked in the local OneDrive “Choose folders” sync configuration, making it missing on that specific computer.
2. Check SharePoint Web Search and Views
Before resetting clients, verify if the folder is present in the SharePoint Online web portal.
Step 1: Use Global Search
- Log in to the SharePoint site in your web browser.
- Click the Search box at the top of the page.
- Search for the exact name of the missing folder.
- If found, note the path in the search results to see if it was moved.
Step 2: Reset the Library View
If the folder is visible in search but not in the library listing:
- Click the view dropdown menu in the top-right of the library (default is usually All Documents).
- Select Reset to default view or switch the view to List.
- If custom columns are enabled, check if a filter is active (indicated by a funnel icon next to a column header) and clear it.
3. Locate Moved or Deleted Folders (Audit Log)
Administrators can use the Microsoft Purview Audit log to see who moved or deleted a folder.
- Go to the Microsoft Purview Compliance Portal (
https://compliance.microsoft.com). - Go to Audit in the left-hand navigation.
- Set the date range and select the following activities:
- Deleted file / Deleted folder
- Moved file / Moved folder
- Run the search to identify the user account, timestamp, and action that caused the folder to move or delete.
4. Restore Synced Folder Issues on Windows
If the folder is present on the web but missing in your Windows file system, the local sync client is stuck or misconfigured.
Step 1: Force Close OneDrive
Open Command Prompt and stop the sync client:
taskkill /f /im OneDrive.exe
Step 2: Search Sync Directory for Hidden or Nested Folders
Search the local synced path to see if the folder was accidentally moved:
:: Navigate to your synced SharePoint directory
cd /d "%USERPROFILE%\SharePoint"
:: Search recursively for the missing folder by name
dir /s /ad "*MissingFolderName*"
Step 3: Run the OneDrive Reset Utility
If the folder was not moved locally, reset OneDrive to force a full re-sync of all folders:
"%localappdata%\Microsoft\OneDrive\onedrive.exe" /reset
Note: If that path fails, run:
"%ProgramFiles%\Microsoft OneDrive\onedrive.exe" /reset
5. Restore Synced Folder Issues on macOS
If a folder is missing on macOS Finder but visible on the web, check the local CloudStorage directory.
Step 1: Terminate OneDrive
Open Terminal and shut down the sync application:
killall OneDrive
Step 2: Search Synced Volumes via Terminal
Search the local system for the missing folder to see if it was dragged into another folder:
# Search recursively for the folder name (case-insensitive)
find ~/Library/CloudStorage/ -type d -iname "*MissingFolderName*"
Step 3: Show Hidden Files in macOS Finder
If the folder is marked as hidden, toggle macOS Finder settings to display all files:
defaults write com.apple.finder AppleShowAllFiles YES
killall Finder
Step 4: Run the Standalone OneDrive Reset Script
If the index is corrupted, rebuild the sync metadata:
/Applications/OneDrive.app/Contents/Resources/ResetOneDriveAppStandalone.command
6. Summary Checklist for Missing Folders
| Troubleshooting Action | Targeted Root Cause | Expected Resolution |
|---|---|---|
| Search SharePoint Web | Accidental relocation / drag-and-drop | Reveals if the folder was nested inside another directory. |
| Check SharePoint Recycle Bin | Accidental deletion | Restores the folder and its entire nested hierarchy. |
| Reset Library View to List | Active filtering rules | Disables view filters that hide folder objects. |
| Check “Choose Folders” in Settings | Selective sync configuration | Ensures the folder is selected for local sync. |
Run dir /s / find locally | Local drag-and-drop relocation | Pinpoints where the folder was moved locally. |
| Run OneDrive Reset Command | Sync client database out of sync | Re-indexes the local metadata to match the server. |