Yes—if you use
File Explorer’s “Current folder only” search (instead of the default recursive search), you can limit it to just the
first level (the client-name folders).
Option A (File Explorer GUI): Search only the first subfolder level
- Open Documents → clients (so you’re inside the
clients folder).
- Click the search box (top-right).
- Set the search scope to Current folder (disable searching subfolders):
- Windows 10: A Search tab appears → Advanced options → uncheck “All subfolders”.
- Windows 11: In the search UI, look for Search options / scope and choose Current folder (wording varies by build).
- In the search box, type something like:
kind:folder john (find folders with “john” in the name)
- or more explicitly:
kind:=folder name:john
That will return only folders
in clients (i.e., the client-name folders), not deeper folders.
Option B (PowerShell, always 1-level only)
If Explorer search options are missing/annoying, this is the cleanest 1-level solution:
- Right-click Start → Terminal (Windows PowerShell) (or open PowerShell).
- Run (edit the path and name part):
Code:
Get-ChildItem "$env:USERPROFILE\Documents\clients" -Directory |
Where-Object Name -like "*john*"
This
only searches the immediate child folders of
clients.
If you tell me whether you’re on
Windows 10 or Windows 11, I can tailor the exact “Search options” clicks to what you’ll see.