macOS Finder Not Loading, Frozen, or Showing Empty Folders — What's Happening?
Finder is macOS's file manager — when it stops loading folders, freezes on the spinning beachball, shows empty folders, or crashes on launch, your entire workflow grinds to a halt. In 2026, Finder issues on macOS Tahoe and Sequoia are most commonly caused by a corrupted preferences file (com.apple.finder.plist), a Desktop folder sync conflict with iCloud Drive, a problematic folder with a malformed filename or extended attribute, or a crashed Finder process that didn't restart cleanly. This guide walks through every fix from the simplest (relaunch) to the complete reset.
Quick Fix 1: Relaunch Finder
The fastest fix — force-quit and relaunch Finder:
Hold Option and right-click the Finder icon in the Dock → click Relaunch.
Or open the Apple menu → Force Quit → select Finder → Force Quit.
Or via Terminal:
killall Finder
Finder restarts automatically after killall. Test if the issue resolves.
Quick Fix 2: Delete Finder Preferences File
A corrupted com.apple.finder.plist is responsible for a large proportion of persistent Finder issues — empty sidebars, wrong view settings that won't save, or Finder freezing every time it opens a specific folder:
defaults delete com.apple.finder
killall Finder
This clears the entire Finder preferences database. Finder resets to default settings (sidebar, view mode, window position). You'll need to re-add any custom sidebar locations.
Alternatively, move the file manually (preserves a backup):
mv ~/Library/Preferences/com.apple.finder.plist ~/Desktop/finder-backup.plist
killall Finder
Step 1: Fix Finder Showing Empty Folders
If you can see folder icons but they appear empty (no files inside) even though you know files are there, there are two common causes:
1. iCloud Drive sync conflict: If the folder is in iCloud Drive (~/ Desktop, Documents, or an iCloud-synced location), files may not have downloaded locally. Check System Settings → Apple Account → iCloud → iCloud Drive → turn off "Optimise Mac Storage" temporarily to force all files to download locally.
2. Extended attribute corruption on the folder:
xattr -l ~/problem_folder_name
If you see com.apple.quarantine or other unusual attributes causing Finder to refuse to display the contents:
xattr -cr ~/problem_folder_name
This clears all extended attributes recursively. Reopen Finder — the folder should now show its contents.
Step 2: Fix Finder Freezing When Opening a Specific Folder
If Finder only freezes when you navigate to a specific folder (Downloads, Desktop, or an external drive), the folder contains a problematic file:
1. Open the folder path via Terminal instead:
ls ~/Downloads
If Terminal lists files normally, the issue is visual — Finder can't render a preview or metadata for one of the files.
2. Turn off folder preview/quick look: In Finder, press Cmd+J (Show View Options) → uncheck "Show icon preview" → check if Finder loads faster.
3. Check for very large files or folders: If a folder contains hundreds of thousands of files or a single very large file being indexed by Spotlight, Finder can take extremely long to load it. Check Spotlight indexing status:
sudo mdutil -E /Volumes/MacintoshHD
sudo mdutil -s /
Step 3: Fix Finder Sidebar Items Not Showing
If Finder's sidebar is empty or certain locations (Desktop, Documents, Downloads, external drives) have disappeared:
Open Finder → Settings (Cmd+,) → Sidebar tab → check all the items you want to appear in the sidebar (Desktop, Documents, Downloads, Applications, hard disks, external disks).
If Sidebar items are checked but still not showing, reset sidebar preferences:
defaults delete com.apple.sidebarlists
killall Finder
Step 4: Fix Finder Not Showing External Drives or Network Shares
If external drives or network shares don't appear in Finder:
External drives: Finder → Settings (Cmd+,) → General tab → check "External disks" under "Show these items on the Desktop" and in the sidebar.
Network shares: Finder → Settings → Sidebar → check "Network" and "Bonjour computers".
If an external drive appears in Disk Utility but not Finder, it may have a filesystem format Finder doesn't handle natively (ExFAT can occasionally have issues, NTFS requires a third-party driver like Tuxera or Paragon NTFS). Open Disk Utility and use First Aid on the drive.
Step 5: Clear Finder's Directory Cache
Finder caches directory listings to improve speed. When this cache gets corrupted, folders appear empty or show stale content:
sudo find /private/var/folders -name "com.apple.finder*" -exec rm -rf {} + 2>/dev/null
killall Finder
This removes all cached Finder data. It's safe — the cache rebuilds automatically on next use.
Also clear the LaunchServices database (fixes wrong app associations and broken file icons):
/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user
killall Finder
Step 6: Repair Disk Permissions and File System
If Finder crashes or shows permissions errors when accessing files:
# Check and repair the main volume
diskutil verifyVolume /
diskutil repairVolume /
On Apple Silicon Macs, boot into Recovery Mode (hold Power button → Continue → Disk Utility) to run First Aid on the system volume while it's not mounted. On Intel Macs, restart and hold Cmd+R at boot.
Step 7: Safe Mode Boot to Isolate Third-Party Issues
If Finder is repeatedly crashing, safe mode disables third-party login items and kernel extensions:
Apple Silicon: Shut down → hold Power until "Loading startup options" → select your disk → hold Shift → click Continue in Safe Mode
Intel: Restart → hold Shift immediately after the startup sound → boot into Safe Mode
If Finder works in Safe Mode, a third-party app (cloud sync client, antivirus, VPN, backup software) is causing the conflict. Disable login items one by one in System Settings → General → Login Items.
Still Having Finder Issues?
Persistent Finder crashes tied to disk corruption, iCloud sync conflicts, or kernel extension incompatibilities can be difficult to diagnose without system-level access. CloudHouse Technologies' pay-per-ticket Mac support gives you access to a specialist who can help resolve complex Finder and macOS system issues without a long-term subscription.
