How to Search Files on Windows 10
How to search files on Windows 10 step by step: Explorer, Start, filters, indexing, and command line — without fluff.
This is a straight answer to how to search files on Windows 10: the built-in methods first, then when to reach for something stronger. Use it as a checklist when you are mid-hunt for a missing document. Every method below uses tools already on your PC — no install required.
Windows 10 gives you five practical entry points below. Work through them in order when you are stuck — most files turn up in Method 1 or 2 without touching the command line.
Method 1 — File Explorer search (default)
- Press
Win + E. - Open the folder or library that should contain the file.
- Press
Ctrl + For click the search box. - Type part of the filename.
- Optionally open the Search ribbon and set Kind, Date, or Size.
Narrow before you widen
Start in the folder where you last worked on the file. If that fails, search the whole drive (D:\), not This PC, unless you truly have no idea which disk holds the data. Each wider scope multiplies false positives and wait time.
Preview pane while scanning results
Press Alt + P in Explorer to show the preview pane. Click through search results to peek inside text and images without opening each file in its default app — a quiet time-saver when you have twenty report*.docx hits.
Wait for the status bar to finish (“Searching…” → results count). Cancel with Esc if you scoped too wide.
Search the whole PC
Go to This PC before searching. Expect slowness on large multi-drive setups. Prefer drive-level search (D:\) when you know which disk.
Method 2 — Start menu search
- Press
Win. - Type a unique fragment of the name.
- Open the file, or right-click → Open file location.
Start is best for files in indexed user folders. It is weaker for deep project trees on secondary disks unless those paths are indexed.
Filter Start results to documents
On Windows 10, scroll past Apps in Start results to Documents and Folders. On Windows 11, the layout differs but the same rule applies: local files are not always the top hit when Bing web results compete for attention.
Method 3 — Search by extension or pattern
Examples to type in Explorer:
*.pdf
meeting*.docx
*2025*.xlsx
Wildcards work in the current folder scope only. *.pdf from Documents does not search Downloads unless you started from a parent that includes both (a library or This PC).
Patterns beat vague words like “stuff” or “notes.”
Method 4 — Search by contents (when the name is useless)
- Ensure content indexing is on (Indexing Options → Advanced → File Types → Index Properties and File Contents).
- In Explorer search:
content:"exact words you remember".
Full walkthrough: search file contents on Windows.
Method 5 — Command line when the GUI stalls
dir /s /b C:\Users\%USERNAME%\Documents\*proposal*
PowerShell equivalent:
Get-ChildItem "$env:USERPROFILE\Documents" -Recurse -Filter "*proposal*" -ErrorAction SilentlyContinue
Add -ErrorAction SilentlyContinue in PowerShell on deep trees so permission-denied folders do not spam errors. For hidden files, append -Force to Get-ChildItem.
Find largest matches when you remember the file was big:
Get-ChildItem D:\ -Recurse -Filter "*export*" -File -ErrorAction SilentlyContinue |
Sort-Object Length -Descending | Select-Object -First 10 FullName, @{N='MB';E={[math]::Round($_.Length/1MB,1)}}
Set up indexing so future searches work
One-time setup pays off:
- Indexing Options → Modify → include Documents, Desktop, Downloads, and work drives.
- Exclude giant caches (build artifacts, game libraries) you never search.
- Rebuild after major folder moves.
Without this, every tip above feels flaky. More detail lives in search files in Windows 10.
Verify indexing is actually running
Open Indexing Options and look at Pending. Zero pending after a quiet hour usually means the index caught up. If pending never drops, see Windows file search not working before blaming your search technique.
Search files on Windows 10 by date, size, or type
Use ribbon filters or typed operators:
- Date:
datemodified:yesterday - Size:
size:largeorsize:>20MB - Type:
kind:music,ext:.png
Stack them: ext:.pdf size:>5MB datemodified:this year.
Real-world filter examples
- Accountant hunting last month’s spreadsheets:
*.xlsx datemodified:last month - Designer looking for large PNG exports:
ext:.png size:>10MB - Developer finding recent logs:
*.log datemodified:this weekin the project folder
What to do when Windows cannot find the file
- Confirm the file is not in Recycle Bin or OneDrive “online-only” with sync issues.
- Search the parent folder with
*.*plus date filter for “last modified.” - Check whether another user profile or a different OneDrive account holds it.
- Rebuild the search index.
- Use
dir /sfrom the suspected root.
Deep dive: Windows file search not working. Broader overview: how to search for a file on Windows.
Version history and cloud copies
Right-click a file in OneDrive → Version history when you suspect you overwrote the wrong draft. Windows Search finds current paths; it does not time-travel through old versions.
Search Recycle Bin
Deleted files leave the index but sit in Recycle Bin. Open Recycle Bin and use its search box, or restore suspects and search again from their original folder.
Limits of built-in Windows 10 search
Built-in search is keyword- and property-based. It will not reliably:
- Map your phrasing to a document that used different words
- Find images from a sentence of description
- Stay instant at Everything-scale filename lookup across huge NTFS volumes
- Read meaning out of non-OCR scans
Those are product category gaps, not user error.
On Windows 10, the same indexing service powers Explorer and Start — fixing Indexing Options once improves every method in this guide, not just one search box. When search still fails after setup, work through Windows file search not working before assuming the file is gone.
When semantic search helps (offline)
If you often search by topic (“the indemnity section,” “sunset over the factory roof”), a local semantic tool fits better than another keyword pass. PixaFind runs offline on your hardware and targets that gap.
For an honest comparison of Windows tools — Everything, Listary, Agent Ransack, and others — read best Windows file search software. If you already use Everything for names, see Everything alternative for what semantic search adds.
FAQ
How do I search files on Windows 10 without Cortana?
You do not need Cortana. Use File Explorer search or Start’s local results; Indexing Options still powers them.
Can I search hidden files?
In Explorer, open the View tab → show hidden items, then search. From CMD, dir /s /a includes hidden/system attributes.
Why are search results different between Start and Explorer?
Scopes differ. Explorer searches the current folder tree; Start leans on the index and presentation rules for “best” matches.
Is there a keyboard-only workflow?
Yes: Win + E, navigate with arrows, Ctrl + F, type query, arrows through results, Enter to open.
Does Windows 10 search USB drives?
Yes from Explorer when you select the drive letter. Add the drive under Indexing Options for speed, or use dir /s if you cannot wait for indexing.
How long does indexing take on a new PC?
Initial indexing of a full user profile often finishes in under an hour on an SSD. Multi-terabyte libraries can take longer — search specific folders while you wait.