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
- Open the Google Drive Web Portal.
- Click Shared with me in the left-hand navigation panel.
- Locate the folder you need to access.
Step 2: Create a Shortcut to My Drive
- Right-click the shared folder.
- Select Organize → Add shortcut.
- In the pop-up window, select My Drive (or select a specific subdirectory in your Drive).
- Click Add.
- 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
- Press
Windows Key + Rto open the Run dialog. - Type
%USERPROFILE%\AppData\Local\Google\and press Enter. - Locate the DriveFS folder.
- 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" - 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
- Run the following command in Terminal to delete the cache files:
rm -rf ~/Library/Application\ Support/Google/DriveFS - In addition, restart Finder to clear the virtual directory mount cache:
killall Finder - Open Google Drive from the Applications folder. Log in again if prompted. The folder will reappear in Finder under Locations → Google Drive.
5. Summary Checklist for Shared Folder Visibility
| Fix Level | Troubleshooting Action | Expected Outcome |
|---|---|---|
| Web Portal | Right-click → Organize → Add shortcut | Projects the shared folder into the sync-eligible “My Drive” area. |
| Permissions Check | Contact Owner / Check Details tab on Web | Verifies if sharing permissions are still active. |
| Windows Desktop App | taskkill /f /im googlepackagedexe.exe | Stops frozen sync client processes. |
| Windows Database Reset | Delete %USERPROFILE%\AppData\Local\Google\DriveFS | Clears local cache and forces a full server-side file query. |
| macOS Desktop App | killall "Google Drive" + killall Finder | Clears stale macOS Finder file caches. |
| macOS Database Reset | rm -rf ~/Library/Application\ Support/Google/DriveFS | Rebuilds the virtual filesystem layout from scratch. |