Recento · Troubleshooting

How to Fix Recent Items Not Showing or Updating on Mac

Finder's Recents sidebar empty, the Apple menu stuck, or one app's Open Recent list blank. Seven real causes and fixes, in the order worth trying them, for macOS 27 Golden Gate and macOS 26 Tahoe.

By Ram Velmurugan · Founder & Lead Developer, 1dot.ai

Verified against macOS 27 Golden Gate·Researched September 2026·10 min read
Quick answer: Start with Finder's Recents sidebar: toggle it off and back on under Finder > Settings > Sidebar. If that doesn't help, relaunch Finder and, if the list is still empty, rebuild Spotlight's index with sudo mdutil -E / in Terminal, since Recents reads directly from Spotlight metadata. If it's specifically the Apple menu's Recent Items list that looks short, macOS 26 Tahoe moved its item-count setting from System Settings > General to Desktop & Dock > Menu Bar, so check there before assuming anything is broken.

Editorial disclosure: 1dot.ai builds Recento, a recent-files overlay mentioned as a workaround near the end of this guide. Every setting location, command, and bug report referenced here was checked live on September 23, 2026 against Apple's own documentation and user reports; sources are listed near the bottom.

Why Recent Items Break in the First Place

macOS doesn't have one "recent items" system. It has at least four separate ones, each built differently and each able to break for its own reason. Finder's Recents sidebar item is a Spotlight-backed smart folder. The Apple menu keeps its own short-lived list of apps, documents, and servers. Individual apps maintain their own Open Recent menus, often through a sandboxing mechanism called security-scoped bookmarks. None of these three talk to each other, which is exactly why "recent files aren't showing" can mean genuinely different problems depending on which of the three you're actually looking at.

That's also why a single blanket fix like restarting the Mac only resolves some of these cases. The fixes below are ordered from the fastest, most common cause to the rarer ones, plus a real macOS 26 Tahoe change to where the Apple menu's item-count setting lives, one that carried into macOS 27 Golden Gate and that most troubleshooting guides don't mention.

The Three Recent-Items Surfaces on Mac

Before troubleshooting, it helps to know which list you're actually dealing with, since each one tracks something different and breaks for a different reason.

SurfaceWhat it tracksWhere it livesTypical break causeFix
Finder Recents (sidebar)Files opened or edited across every app, via Spotlight metadataFinder sidebar, under FavoritesSpotlight index stalled, Finder cache corruptedToggle the sidebar item, relaunch Finder, rebuild the Spotlight index
Go > Recent FoldersFolders you've navigated to recently (not individual files)Finder menu bar, Go menuSame underlying Finder-process issues as aboveRelaunch Finder
Apple menu Recent ItemsApps, documents, and servers opened system-wideApple menu, top-left corner of the screenItem count relocated in macOS Tahoe/Golden Gate, or manually clearedClear Menu, then check the count under Desktop & Dock > Menu Bar
Per-app File > Open RecentDocuments opened in that one app onlyThat app's File menu, and its Dock icon right-click menuA security-scoped bookmark bug in a sandboxed appQuit cleanly with Cmd-Q, then check for an app update

The Fixes, in Order

Toggle Finder Recents Off and Back On

Recents in the Finder sidebar isn't a normal folder. It's a smart folder built on Spotlight's "last used" metadata, pulled together across every app on your Mac. When that metadata stops updating, the sidebar item just sits there empty even though the files themselves are completely fine.

Open Finder > Settings (Finder > Preferences on older macOS), click Sidebar, and uncheck Recents under Favorites. Wait a few seconds, then check the box again. That small toggle forces Finder to rebuild the smart folder from scratch, and it's the fix that resolves this most often according to reports on Apple's own community forums.

If Go > Recent Folders in the menu bar is also stuck (a separate list scoped to folders you've navigated to, not files you've opened), the same relaunch in the next fix covers it too, since both draw from the same Finder process.

Fixes: Finder's Recents sidebar item is empty or stuck

Relaunch Finder and Clear the Recent Items Cache

If toggling the sidebar item alone didn't help, the Finder process itself may be stuck. Option-Control-click the Finder icon in the Dock and choose Relaunch, or use Apple menu > Force Quit, select Finder, and click Relaunch (it always restarts on its own since Finder is always running).

If that still doesn't fix it, Finder keeps a separate recent-items cache that can get corrupted, usually after a crash or a forced shutdown. Open Terminal and run:

rm -rf $TMPDIR../C/com.apple.recentitems/

That clears the cache without touching your files. Relaunch Finder afterward and give it a few seconds to rebuild.

Fixes: nothing updates anywhere in Finder

Rebuild the Spotlight Index

Since Finder Recents is Spotlight-backed, a stalled Spotlight index is the deeper cause when the two fixes above don't help. The tell is usually Activity Monitor: search for "mds" or "mdworker" and check whether either is pinned at a high, unmoving percentage of CPU for an extended period, well past what a normal reindex after a big file operation would need.

Open Terminal and run:

sudo mdutil -E /

That erases and rebuilds Spotlight's index for your whole startup disk. It will ask for your password and, depending on how much is stored on the Mac, can take anywhere from a few minutes to a few hours. You can check progress from the Spotlight icon in the menu bar, which shows a small pulsing dot while indexing is active. Recents (and regular Spotlight search) will be incomplete until it finishes.

Fixes: Recents (sidebar and Go menu) show nothing at all, even after a relaunch

Reset the Apple Menu Recent Items List

Click the Apple logo at the top-left of the screen, hover Recent Items, and choose Clear Menu at the bottom of the list. That wipes the current Applications, Documents, and Servers submenus and macOS starts tracking again from your next action, which is often enough to shake loose a list that stopped updating.

If the list feels shorter than it used to, that's a real setting change worth knowing about, not a bug you're imagining. The "Recent documents, applications, and servers" count used to live under System Settings > General. Starting with macOS 26 Tahoe, Apple pulled it out of General entirely; developers flagged this on Apple's own developer forums after finding the list apparently capped at 10 items post-upgrade, and Apple staff confirmed the control had simply moved, not disappeared. It carried forward into macOS 27 Golden Gate. Look under System Settings > Desktop & Dock, in the Menu Bar section, for the pop-up and set it back to your preferred count.

That's a different setting from "Show suggested and recent applications in Dock," also under System Settings > Desktop & Dock, which controls the Dock's own recent-apps row rather than the Apple menu's list. Toggling one doesn't touch the other, so it's worth checking you're not adjusting the wrong one.

Fixes: Apple menu Recent Items is empty, stuck, or capped lower than it used to be

Check Whether One App's Open Recent Is the Real Problem

If everything above looks normal and the gap is scoped to a single app, the cause usually sits inside that app, not macOS. Sandboxed apps, which include most Mac App Store apps and a growing number of direct-download ones, don't store a file's actual disk path. They store what Apple calls a security-scoped bookmark and re-request access to it each time the app opens. When an app's bookmark-refresh logic has a bug, a file can silently drop out of Open Recent on relaunch instead of showing any error.

Quit the app with Cmd-Q rather than force-quitting it, since bookmarks are typically written to disk on a clean exit, and check whether an update is available; this is the kind of bug developers do fix in point releases. If it keeps happening in one specific app while every other app's Open Recent works fine, that's worth reporting to that app's developer rather than troubleshooting further on your end.

Fixes: one app's File > Open Recent is empty while Finder and the Apple menu work fine

Give iCloud Drive Time to Finish Syncing

If Desktop & Documents Folders syncing is turned on in iCloud Drive, a file can take a few minutes, occasionally longer under heavy load, to finish uploading and register everywhere it should. Finder's own Recents list is based on your Mac's local last-used metadata and doesn't wait on iCloud, so a file you just created should still appear locally right away. What actually lags is anything depending on the upload finishing, most commonly that same file becoming visible on your other Macs.

Check the iCloud status icon in the menu bar for a syncing indicator, and confirm nothing is paused under System Settings > [your name] > iCloud > iCloud Drive. Toggling Desktop & Documents Folders off and back on can nudge a stuck sync, but treat it as a last resort: it can trigger a lengthy re-upload of everything in those folders rather than a quick refresh.

Fixes: a file you just saved or moved does not show up as recent yet

Check for a Screen Time or MDM Restriction

On a Mac managed by a school, employer, or any mobile device management (MDM) system, an administrator can suppress the Dock's recent-apps section on purpose, through a configuration profile that sets the `com.apple.dock` preference domain's `show-recents` key to false. IT teams use exactly this technique on shared lab and kiosk Macs, and it's documented in Apple admin communities as a real, intentional setting rather than a bug.

Screen Time's own Content & Privacy Restrictions don't include a dedicated Recent Items toggle, so if a restricted Mac behaves this way, the more likely explanation is a separate MDM profile. If none of the fixes above change anything and the Mac belongs to an organization, ask whoever manages it before spending more time troubleshooting, since the missing list may be by design.

Fixes: Recent Items are missing entirely and predictably, on a school or work Mac

Did macOS 27 Golden Gate Change Anything Here?

macOS 27 "Golden Gate" shipped September 14, 2026 and made real, confirmed changes to Spotlight: it merged Spotlight and Siri into a single "Search or Ask" interface, added semantic search, and, per Apple and independent reporting, indexes faster than macOS 26 Tahoe did. None of that is the same system as Finder's Recents smart folder or the Apple menu's Recent Items tracking, and as of this check on September 23, 2026, nothing in Apple's own release notes or the early coverage we reviewed ties Golden Gate to a Recent Items regression specifically.

What this means practically
Every fix above applies the same way on macOS 26 Tahoe and macOS 27 Golden Gate. The one Golden Gate-era change worth knowing is the Apple menu item-count relocation covered in the fixes above, and that actually started with Tahoe, not Golden Gate itself.

A Recent-Files List That Doesn't Depend on Any of This

Every fix above is about getting Apple's own recent-items tracking working the way it's supposed to. None of it changes the underlying fact that Finder Recents, the Apple menu, and every app's own Open Recent list all pull from different, occasionally fragile sources you don't control: Spotlight metadata, an Apple menu cache, or a bookmark a sandboxed app has to keep valid.

Recento takes a different approach entirely. Press one global hotkey from any app and an overlay shows your recent files, recent screenshots, and clipboard history, built from what you've actually touched rather than from Spotlight or a per-app bookmark, ready to drag straight into whatever you're working on. It won't repair Finder's own Recents smart folder, but if what you actually need is a dependable way back to a file you had open recently, it sidesteps the whole chain covered in this guide.

Honest note
Recento is free to start (5 recent files, 2 custom filters, full clipboard access), with a one-time $19.99 lifetime upgrade (limited launch price, regularly $30) for unlimited files and filters. It runs on macOS 11 Big Sur or later, on both Intel and Apple Silicon.

Sources & Further Reading

Finder Recents behavior and clearing recent items, official documentation: Apple Support, Open recently used items on Mac.

Finder Recents not updating, community reports: Apple Support Communities, "Finder Recents not working", "Recent files in recent folder isn't appearing", MacRumors Forums, "Recent folder empty".

Apple menu Recent Items item-count setting moving from System Settings > General to Menu Bar in macOS Tahoe: Apple Developer Forums, "macOS Tahoe Recent Items constrained to 10 items".

Dock "Show suggested and recent applications" setting, distinct from the Apple menu list: MacRumors, Show More (or Fewer) Recent Apps in Your Mac's Dock.

Rebuilding the Spotlight index: The Eclectic Light Company, When and how to rebuild Spotlight indexes.

Security-scoped bookmarks and per-app Open Recent behavior in sandboxed apps: Apple Developer Documentation, Enabling Security-Scoped Bookmark and URL Access.

Suppressing recent items via MDM configuration profile on managed Macs: Jamf Nation Community, "Any way to disable show recent applications in dock?".

macOS 27 "Golden Gate" release and Spotlight/Siri changes, September 14, 2026: 9to5Mac, macOS 27 Golden Gate now available, MacRumors, 50 New macOS Golden Gate Features and Changes.

Frequently Asked Questions

Why is Finder's Recents sidebar item suddenly empty on my Mac?
Recents in the Finder sidebar isn't a real folder. It's a Spotlight-backed smart folder that lists files by their "last used" metadata, so if Spotlight's index itself has stalled, the sidebar has nothing to draw from even though your files are fine. Toggling the Recents item off and back on under Finder > Settings > Sidebar forces a quick rebuild and fixes most cases in under a minute. If that doesn't help, the index itself likely needs rebuilding with `sudo mdutil -E /`.
Why did my Apple menu Recent Items list get shorter after updating macOS?
The control for how many recent documents, apps, and servers to remember used to live under System Settings > General. Starting with macOS 26 Tahoe, Apple removed it from General and moved it into the Menu Bar section of System Settings, a relocation some users first noticed as the list appearing capped at a low number after upgrading. It carried into macOS 27 Golden Gate. Check System Settings > Desktop & Dock > Menu Bar for the "Recent documents, applications, and servers" pop-up and set it back to your preferred count.
Does clearing Recent Items delete the actual files?
No. Apple menu > Recent Items > Clear Menu, and the equivalent in Finder or any app's File > Open Recent, only removes the shortcut pointing at the file. The file itself stays exactly where it was. This is also why clearing the list is a safe first troubleshooting step rather than something to be cautious about.
Why does File > Open Recent show nothing in one specific app but work fine everywhere else?
That's usually the app, not macOS. Sandboxed apps (most Mac App Store apps, and a growing share of direct-download ones) don't store a file's actual path. They store a security-scoped bookmark and re-request access to it each time the app relaunches. When an app's bookmark-refresh logic has a bug, files quietly drop out of Open Recent instead of throwing a visible error. Quit the app with Cmd-Q rather than force-quitting, since bookmarks are written on a clean exit, and check for a pending update. If it keeps happening in that one app, it's worth reporting to that app's developer.
Will iCloud Drive eventually catch up on its own, or do I need to force a sync?
In most cases it catches up on its own within a few minutes. Finder's local Recents list is based on your Mac's own last-used metadata and doesn't wait on iCloud, so a file you just saved should still show up locally right away even mid-sync. What lags is anything relying on iCloud having finished uploading, such as that file becoming visible or searchable on your other Macs. Check the iCloud status icon in the menu bar and System Settings > [your name] > iCloud > iCloud Drive before assuming something is broken.
Is there a way to stop macOS from tracking recent items at all, for privacy?
Yes, at a few levels. Apple menu > Recent Items > Clear Menu wipes the current list but macOS starts tracking again immediately. For a specific app, running `defaults write <bundle-id> NSRecentDocumentsLimit -int 0` in Terminal stops that one app from keeping a list going forward. On a Mac managed by a school or employer, an administrator can suppress the Dock's recent-apps section entirely through a configuration profile that sets the `com.apple.dock` preference domain's `show-recents` key to false, which is a real, documented technique IT teams use for shared or kiosk Macs.
Does macOS 27 Golden Gate fix any of these Recent Items bugs?
Not that we found as of this check on September 23, 2026. Golden Gate (released September 14, 2026) rebuilt Spotlight around a merged "Search or Ask" interface with Siri built in and reportedly faster indexing, but that's a change to search and Siri, not to how Finder's Recents smart folder or the Apple menu track "last used." None of the coverage we reviewed at launch mentions Recent Items specifically, and none of the fixes above are Golden Gate workarounds, they apply the same way on macOS 26 Tahoe.
What's the fastest way to get back to a recent file without relying on any of macOS's own recent-items lists?
A hotkey overlay like Recento sidesteps the whole chain covered above, since it's not reading from Spotlight metadata, an Apple-menu cache, or a per-app bookmark. Press one global shortcut from any app and it shows recent files, screenshots, and clipboard history in one place, ready to drag into whatever you're working on. It won't repair Finder's own Recents smart folder, but if what you actually want is a reliable way back to something you had open recently, it doesn't depend on any of it being healthy in the first place.

The Bottom Line

"Recent items not showing" almost always traces back to one of a handful of causes, not a deep, unfixable problem. Toggling Finder's Recents sidebar item and relaunching Finder resolves most cases in under a minute. If it's specifically the Apple menu's list that looks shorter than it used to, check System Settings > Desktop & Dock > Menu Bar before anything else, since that setting genuinely moved in macOS 26 Tahoe and stayed moved in macOS 27 Golden Gate. Work through the list in order, and treat a full Spotlight index rebuild as a heavier step to reach for only after the quicker fixes above it haven't helped.


Want more ways to reach your recent files faster? Read our full guide to accessing recent files on Mac, see how macOS 26's own built-in Spotlight clipboard history compares to Recento, check our Recento vs Recents comparison if you've run across the similarly-named app, or browse every 1dot.ai guide.

Stop Depending on Finder's Recents Behaving

Recento overlays your recent files, screenshots, and clipboard history over whatever you're doing, one hotkey away. Free forever, or $19.99 lifetime.

Get Recento for MacRead More Guides