Make Finder search the current folder by default
You open a folder, type into the Finder search box to find a file you know is right there, and Finder responds with results from your entire Mac — most of them irrelevant. Out of the box, Finder searches "This Mac" every time. You can flip the default so every search starts in the folder you already have open. It's one setting, in Finder's Advanced preferences or a single Terminal command.
Change the default in Finder Settings
- Click the desktop or any Finder window, then choose Finder → Settings from the menu bar (called Preferences on older systems).
- Open the Advanced tab.
- Find When performing a search and choose Search the Current Folder.
That's the whole change. From now on, typing in the search box while a folder is open scopes the results to that folder and everything inside it — not the rest of your drive. The dropdown offers three choices: Search This Mac (the default you're replacing), Search the Current Folder, and Use the Previous Search Scope, which repeats whatever scope you last picked. This works the same on macOS 13 Ventura, 14 Sonoma, and 15 Sequoia.
Or set it from the Terminal
The preference behind that dropdown is a short scope code, and you can set it directly:
# Default new searches to the current folder
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf"
killall Finder
# Undo — go back to searching This Mac
defaults write com.apple.finder FXDefaultSearchScope -string "SCev"
killall Finder
The codes are worth knowing: SCcf is the current folder, SCev is This Mac, and SCsp is the previous scope. The killall Finder restarts Finder so the change takes effect; your desktop icons blink and reappear, which is normal.
Override a single search when you need to
Changing the default doesn't lock you in. Every search window still shows a scope bar just under the toolbar with buttons for where to look. After you type a query, that bar appears with "Current Folder" highlighted next to "This Mac" — click This Mac for that one search when you genuinely need to look everywhere, then go back to typing normally for the next one. The default decides where searches start; the scope bar lets you widen any individual search on the spot. That combination is why current-folder is the more useful default: most searches are for something nearby, and the rare Mac-wide hunt is one click away.
One thing worth knowing: current-folder search still relies on Spotlight's index underneath, so results appear as fast as they do for a whole-Mac search — you're narrowing what is returned, not switching to a slower method. If a folder you expect is excluded from Spotlight indexing, it won't show up here either; that's a separate setting under Spotlight's privacy list, not something the scope controls. For everyday folders, though, you'll never notice the difference in speed — only in relevance.
Mainspring turns the Finder search scope into a labelled, one-click toggle — current folder or This Mac, flipped and reversed without touching preferences or codes. It's one of 90+ hidden macOS settings it makes reversible.
Try Mainspring free →Signed & notarized by Apple · 1-day free trial · $29 once
Sharpen the search that follows
Once results are scoped correctly, the next win is narrowing by kind, date, or name. See Finder search operators on Mac to filter within the folder instead of scrolling a long list.