google drive

Google Drive Shared Folder Not Showing

Resolution Checklist

  • 1 Understand why shared folders do not show up
  • 2 Add shared folders to 'My Drive' using shortcuts (Web)
  • 3 Troubleshoot missing shared folders on Windows (Desktop)
  • 4 Troubleshoot missing shared folders on macOS (Desktop)
  • 5 Summary Checklist for Shared Folder Visibility

Google Drive Shared Folder Not Showing

If a colleague shares a folder with you, you might notice that the shared folder is not showing in your local Google Drive folder on your desktop, or it is missing from your cloud dashboard.

This issue is typically caused by a mismatch in how Google Drive handles shared assets compared to personal files. This guide explains how to make shared folders visible on both the Google Drive web portal and your desktop.


1. Understand Why Shared Folders Do Not Show Up

There are three primary reasons why a shared folder may not appear:

  • “Shared with me” vs “My Drive”: When someone shares a folder with you, Google Drive puts it in the Shared with me section. Files in this section do not automatically sync to Google Drive for Desktop. You must explicitly add a shortcut to My Drive for the sync engine to download them.
  • Permissions Expiry or Revocation: The folder creator may have set an expiration date on your sharing permissions, or revoked your access.
  • Corrupted Local Directory Cache: If you have already added the shortcut but it is not appearing on your local computer, the local DriveFS sync engine database may have stalled.

2. Add Shared Folders to “My Drive” Using Shortcuts (Web)

To make any shared folder visible on your desktop client or easily accessible in your main drive structure, you must create a shortcut.

Step 1: Locate the Shared Folder Online

  1. Open the Google Drive Web Portal.
  2. Click Shared with me in the left-hand navigation panel.
  3. Locate the folder you need to access.

Step 2: Create a Shortcut to My Drive

  1. Right-click the shared folder.
  2. Select OrganizeAdd shortcut.
  3. In the pop-up window, select My Drive (or select a specific subdirectory in your Drive).
  4. Click Add.
  5. The folder will now display a small arrow overlay on its icon, indicating it is a shortcut. The desktop sync client will immediately detect this shortcut and project the folder onto your computer.

3. Troubleshoot Missing Shared Folders on Windows (Desktop)

If the shared folder is visible in “My Drive” on the web but does not appear on your Windows virtual drive (e.g., G:\My Drive), force Google Drive to refresh its local metadata index.

Step 1: Force Quit the Client Engine

Open Command Prompt (Admin) and execute:

taskkill /f /im googlepackagedexe.exe

Step 2: Clear Stale Folder Cache Databases

  1. Press Windows Key + R to open the Run dialog.
  2. Type %USERPROFILE%\AppData\Local\Google\ and press Enter.
  3. Locate the DriveFS folder.
  4. Delete it. (This will purge local index databases and force the client to fetch a completely fresh list of files and shortcuts from Google’s servers):
    rmdir /s /q "%USERPROFILE%\AppData\Local\Google\DriveFS"
  5. Relaunch Google Drive from the Start menu.

4. Troubleshoot Missing Shared Folders on macOS (Desktop)

On macOS, Google Drive maps folders through the Apple FileProvider framework. If a shortcut is missing in Finder, reset the FileProvider cache.

Step 1: Stop the Client Process

Open Terminal and terminate Google Drive:

killall "Google Drive"

Step 2: Purge local cached metadata

  1. Run the following command in Terminal to delete the cache files:
    rm -rf ~/Library/Application\ Support/Google/DriveFS
  2. In addition, restart Finder to clear the virtual directory mount cache:
    killall Finder
  3. Open Google Drive from the Applications folder. Log in again if prompted. The folder will reappear in Finder under LocationsGoogle Drive.

5. Summary Checklist for Shared Folder Visibility

Fix LevelTroubleshooting ActionExpected Outcome
Web PortalRight-click → OrganizeAdd shortcutProjects the shared folder into the sync-eligible “My Drive” area.
Permissions CheckContact Owner / Check Details tab on WebVerifies if sharing permissions are still active.
Windows Desktop Apptaskkill /f /im googlepackagedexe.exeStops frozen sync client processes.
Windows Database ResetDelete %USERPROFILE%\AppData\Local\Google\DriveFSClears local cache and forces a full server-side file query.
macOS Desktop Appkillall "Google Drive" + killall FinderClears stale macOS Finder file caches.
macOS Database Resetrm -rf ~/Library/Application\ Support/Google/DriveFSRebuilds the virtual filesystem layout from scratch.