sharepoint

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.

  1. Log in to the SharePoint site in your web browser.
  2. Click the Search box at the top of the page.
  3. Search for the exact name of the missing folder.
  4. 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:

  1. Click the view dropdown menu in the top-right of the library (default is usually All Documents).
  2. Select Reset to default view or switch the view to List.
  3. 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.

  1. Go to the Microsoft Purview Compliance Portal (https://compliance.microsoft.com).
  2. Go to Audit in the left-hand navigation.
  3. Set the date range and select the following activities:
    • Deleted file / Deleted folder
    • Moved file / Moved folder
  4. 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 ActionTargeted Root CauseExpected Resolution
Search SharePoint WebAccidental relocation / drag-and-dropReveals if the folder was nested inside another directory.
Check SharePoint Recycle BinAccidental deletionRestores the folder and its entire nested hierarchy.
Reset Library View to ListActive filtering rulesDisables view filters that hide folder objects.
Check “Choose Folders” in SettingsSelective sync configurationEnsures the folder is selected for local sync.
Run dir /s / find locallyLocal drag-and-drop relocationPinpoints where the folder was moved locally.
Run OneDrive Reset CommandSync client database out of syncRe-indexes the local metadata to match the server.