Search Files in Windows 10: A Practical Guide
Search files in Windows 10 with File Explorer filters, Indexing Options, and search operators — plus fixes when results are missing.
If you need to search files in Windows 10 quickly, File Explorer plus a healthy search index covers most cases. This guide focuses on Windows 10’s Explorer search ribbon, operators, and indexing — with notes that still help if you upgraded to Windows 11.
Windows 10 did not ship a separate file search app. Search lives inside File Explorer and Start, backed by the same index service. Learning the ribbon filters and typed operators is the difference between instant results and watching a progress bar crawl across your screen.
The Windows 10 File Explorer search ribbon
- Open File Explorer and navigate to a folder or drive.
- Click the search box in the upper-right corner.
- When search is active, the Search tab appears on the ribbon.
- Use ribbon filters: Date modified, Kind, Size, Other properties, and Recent searches.
The ribbon is easy to miss if you start typing immediately. Click into search first so the tab appears.
Kind and type filters that save time
From the ribbon or by typing:
kind:picture— imageskind:video— videoskind:document— Office-ish documentskind:folder— folders onlytype:.pdforext:.pdf— PDFs
Combine with a name fragment: kind:document budget.
Date modified from the ribbon
Click Date modified on the Search tab for presets: Today, Yesterday, This week, Last month, etc. Typing datemodified:last week in the search box does the same thing — use whichever you remember.
Size filters
size:empty, size:tiny, size:large, or explicit size:>500MB help when you remember the file was huge (video export) or empty (placeholder). Combine: kind:video size:>1GB datemodified:this month.
Search operators worth memorizing
| Operator | Example | Meaning |
|---|---|---|
* wildcards | inv*.xlsx | Name pattern |
filename: | filename:proposal | Match in file name |
content: | content:"net 30" | Match inside contents |
datemodified: | datemodified:last week | Recency |
size: | size:>100MB | File size |
folder: | folder:Contracts | Path contains |
Dates accept friendly phrases (today, this month) and absolute dates depending on locale.
Operator combinations that work in practice
filename:invoice ext:.pdf— PDFs with “invoice” in the namekind:picture datemodified:this year— recent photoscontent:"project kickoff" kind:document— documents containing a phraseNOT kind:folder readme— files named readme, excluding folders
NOT and parentheses are supported in advanced queries; keep expressions simple to avoid parser surprises.
For deeper content search setups, see search file contents on Windows.
Configure Indexing Options on Windows 10
- Start → type Indexing Options → open.
- Modify → check drives/folders you search weekly.
- Advanced → File Types → enable contents for
.pdf,.docx,.pptx,.txt, etc. - Under Advanced, note the index location (default is fine for most PCs).
Indexed vs non-indexed locations
Indexed locations return faster, richer results. Searching a huge non-indexed USB drive forces a crawl — progress feels sticky and CPU fans spin. Either add the location to the index or narrow the folder before searching.
How to tell if you are crawling: the Explorer status bar shows “Searching…” with no instant hit count. Indexed searches populate results almost immediately. If every search crawls, open Indexing Options and confirm the drive is checked under Modify.
Exclude folders that waste index time
Right-click a folder in Explorer → Properties → Advanced → uncheck Allow files in this folder to have contents indexed. Use this for node_modules, game installs, VM images, and backup trees you never query. Smaller index = faster updates after you save new files.
Search from This PC vs a single folder
This PC is tempting. It is also where searches go to die: every drive, every library, every false positive named readme.txt.
Prefer:
- The project folder
- Then the drive (
D:\) - Then This PC only as a last resort
Same habit applies when you search for a file on Windows generally.
Use Recent and Quick Access as a first pass
Before a full search:
- Quick Access / pinned folders for places you live in
- Recent files in File Explorer Home
- Office Recent lists if you know it was a Word/Excel file
Many “I can’t find it” moments end with a file opened two days ago still sitting in Recents.
Many “I can’t find it” moments end with a file opened two days ago still sitting in Recents.
Jump Lists and taskbar pins
Right-click a pinned app on the taskbar (Word, VS Code, Photoshop) for that app’s recent files. If you remember which program created the file, this is often faster than a full-disk search.
Command-line fallbacks on Windows 10
CMD
cd /d D:\Work
dir /s /b *invoice*.pdf
PowerShell
Get-ChildItem -Path D:\Work -Recurse -Filter "*invoice*.pdf" |
Sort-Object LastWriteTime -Descending |
Select-Object -First 20 FullName, LastWriteTime
These ignore the Windows Search UI entirely — useful when the indexer service is stuck.
Open Explorer at search results from PowerShell
explorer.exe /select,"D:\Work\invoice-final.pdf"
Highlights a known file in Explorer — useful when dir found the path but you need the folder context.
Common Windows 10 search problems
Search ribbon missing
Click the search box; if still missing, Explorer glitches happen — restart Explorer from Task Manager.
Only desktop apps appear in Start search
You may be looking at Apps filter; scroll to Documents, or use Explorer.
Results incomplete after moving files
Rebuild the index (Indexing Options → Advanced → Rebuild).
Work PC policies
Corporate images sometimes disable content indexing or exclude drives. Check with IT if Modify is locked.
More troubleshooting: Windows file search not working.
Where Windows 10 file search falls short
Even a perfect index only matches strings and properties. It will not:
- Understand that “lease renewal” and “extension of tenancy” are the same topic
- Find a photo from a description alone
- Recover meaning from a scanned PDF with no OCR
- Stay instant across millions of files the way a dedicated NTFS filename indexer can
If your job is “find by exact name,” tools like Everything excel. If your job is “find by what it was about,” you need a different approach.
If your job is “find by exact name,” tools like Everything excel. If your job is “find by what it was about,” you need a different approach.
Hybrid workflow many power users adopt
- Everything (or similar) when you know part of the filename — milliseconds across millions of paths.
- Windows Explorer
content:when you know a phrase inside a document and indexing works. - Semantic search when filenames and keywords both fail.
That is three tools, three jobs. No single built-in Windows 10 feature covers all three.
When semantic search helps (offline)
PixaFind indexes documents and images for meaning-based search on your PC — no upload. Use Windows 10 search for quick name lookups; use semantic search when the filename is noise.
See the full landscape in best Windows file search software, and sibling how-tos like how to search files on Windows 10.
FAQ
How do I search files in Windows 10 by date?
In Explorer search, use the Search ribbon’s Date modified filter or type datemodified:this week (or another range).
Can Windows 10 search file contents?
Yes, with Indexing Options set to index file contents for those extensions. Use content:"phrase" in the search box.
Is Windows 10 search different from Windows 11?
The index is the same idea. Windows 11 changes Start’s UI and defaults; Explorer operators largely carry over.
Should I add my entire C: drive to the index?
Usually no — index user folders and project drives. Indexing all of C:\Windows and package caches wastes time and disk.
Why does search feel slower after a Windows update?
Updates sometimes pause or rebuild the index. Check Indexing Options; give it a few hours on AC power before rebuilding again.