Finding a file on Windows 11 or Windows 10 can be surprisingly difficult when you have thousands of documents, photos, videos, downloads, and other files stored across multiple folders and drives. You may remember the file name, part of the name, its file type, or even approximately when you created or downloaded it, but not remember where you saved it.
Fortunately, Windows includes several built-in tools that make it possible to search for files in different ways. You can use File Explorer, Windows Search, search filters, file extensions, dates, sizes, and advanced search commands. If Windows Search does not locate a file, you can also search an entire drive manually or use Command Prompt and PowerShell.
This guide explains several practical methods for finding almost any file on Windows 11 and Windows 10. The methods work for documents, images, videos, ZIP files, installers, programs, and other file types.
Method 1: Search for a File Using File Explorer
The easiest way to find a file is through File Explorer.
To begin:
- Press Windows + E to open File Explorer.
- Navigate to the location where you think the file might be stored.
- Click the Search box in the upper-right corner.
- Type the name of the file.
- Press Enter.
Windows will search the selected location and display matching results.
For example, if you are looking for a document called budget.xlsx, enter:
budget.xlsx
If you do not remember the complete name, search for only part of it:
budget
Windows will display files and folders containing that word in their names and, depending on indexing and search settings, potentially matching content as well.
If you are unsure which folder contains the file, select This PC before searching. This tells File Explorer to search across the locations included under This PC rather than restricting the search to one folder.
Searching This PC can take considerably longer than searching a specific folder, particularly when you have several drives or a large amount of data.
Method 2: Search Using the Windows Start Menu
Windows Search provides another quick way to find files.
Press the Windows key and begin typing the file name.
For example:
invoice
Windows may display matching applications, documents, folders, and other results.
If the file appears in the results, you can right-click it and choose options such as Open file location, depending on the result and Windows version.
This method is convenient when you remember the name of the file but do not know its location.
However, Windows Search may prioritize applications, settings, and other results. If you want more control over the search, File Explorer is generally better.
Method 3: Search for Files by Extension
If you cannot remember the file name but know its type, search by its file extension.
For example, to find all PDF files, search:
*.pdf
To find Word documents:
*.docx
To find Excel spreadsheets:
*.xlsx
To find JPEG images:
*.jpg
You can also search for common video files:
*.mp4
The asterisk represents any file name.
For example:
*.pdf
means Windows should find files with any name as long as they have the .pdf extension.
This is especially useful when you remember the file type but have completely forgotten the file’s name.
Method 4: Search for a File by Part of Its Name
You do not always need to know the complete file name.
Suppose a file is named:
Windows-11-installation-guide.pdf
You could search for:
Windows
or:
installation
or:
guide
Windows will look for matching names.
You can also combine a partial name with a file extension:
Windows*.pdf
This can help narrow the results when there are many files with similar names.
If you know only a distinctive word from the file name, start with that word and then refine the search based on the results.
Method 5: Search for Files by Date
Sometimes you remember approximately when a file was created, modified, or downloaded but cannot remember its name.
File Explorer provides date-related search options.
Open File Explorer and search within the desired folder or This PC. You can then use search filters available in the File Explorer interface.
You can also use search syntax such as:
datemodified:this week
or:
datemodified:last month
Depending on the Windows version and search interface, available filters may include:
- Today
- Yesterday
- This week
- Last week
- This month
- Last month
- Earlier this year
- A specific date range
Date filtering is particularly useful for files you recently downloaded, edited, or created.
For example, if you know you downloaded a PDF two days ago but cannot remember its name, search your Downloads folder and narrow the results by modification date.
Method 6: Search for Large Files
If you are trying to locate a large video, backup, ISO image, or other file consuming disk space, searching by size can be much faster than manually checking folders.
In File Explorer, search within This PC or a specific drive and use the available size filters.
You can search for files larger than a certain size using search syntax such as:
size:>1GB
You could also use:
size:>500MB
This is useful when you know the file is large but cannot remember its name.
For example, if you downloaded a Windows ISO and forgot where it was saved, searching for:
*.iso
and combining it with a size filter can quickly narrow the results.
Method 7: Search the Downloads Folder
The Downloads folder is one of the first places to check when looking for a file downloaded from the internet.
Open File Explorer and select:
Downloads
Then search for the file name, part of the name, or extension.
For example:
*.zip
will find ZIP archives.
You can also sort files by Date modified, Name, Type, or Size.
If you recently downloaded the file, sorting by date can be faster than performing a broad search.
Remember that browsers and other applications may use different download locations. If the file is not in Downloads, search This PC.
Method 8: Search an Entire Drive
If you know which drive contains the file but do not know its folder, search the entire drive.
For example:
- Open File Explorer.
- Select This PC.
- Open the drive you want to search.
- Enter the file name or extension into the search box.
- Press Enter.
Searching a smaller location is usually faster than searching every location on the computer.
If you have several drives, repeat the search on each one.
For example, if you suspect a file is stored on drive D:, open:
D:\
and search there.
Method 9: Find a File Using Command Prompt
Command Prompt can search directories using the dir command.
Open Command Prompt and enter:
dir C:\filename.ext /s
Replace filename.ext with the file you are looking for.
For example:
dir C:\report.pdf /s
The /s parameter tells Windows to search all subdirectories.
If you only remember part of the name, you can use a wildcard:
dir C:\report*.pdf /s
To search for all PDF files:
dir C:\*.pdf /s
You can also hide unnecessary error messages by using:
dir C:\*.pdf /s /b 2>nul
The /b option produces a simpler output containing file paths, while 2>nul suppresses many access-related error messages.
This method can be useful when File Explorer Search is not finding what you need.
Method 10: Search for a File Using PowerShell
PowerShell provides more advanced search capabilities.
Open Windows Terminal or PowerShell and use:
Get-ChildItem -Path C:\ -Filter "filename.ext" -Recurse -ErrorAction SilentlyContinue
For example:
Get-ChildItem -Path C:\ -Filter "report.pdf" -Recurse -ErrorAction SilentlyContinue
To find every PDF file on the C: drive:
Get-ChildItem -Path C:\ -Filter "*.pdf" -Recurse -ErrorAction SilentlyContinue
You can search for files based on other properties as well.
For example, to find files larger than 1 GB:
Get-ChildItem C:\ -File -Recurse -ErrorAction SilentlyContinue |
Where-Object {$_.Length -gt 1GB}
PowerShell can therefore be useful when you need more precise control over the search.
Conclusion
Windows 11 and Windows 10 provide many ways to find files, whether you remember the exact name or only a small amount of information about the file.
For most users, File Explorer is the best starting point. Press Windows + E, select This PC if you do not know the file’s location, and search for its name or extension.
If you know the file type but not the name, use a wildcard such as:
*.pdf
or:
*.mp4
If you remember part of the name, search using that portion or combine it with the extension.
For files that you downloaded recently, check the Downloads folder and sort by date. For large files, use size-based searches. If File Explorer does not produce useful results, Command Prompt and PowerShell provide powerful alternatives for searching an entire drive.
It is also worth checking the Recycle Bin, cloud-storage folders, and the recent-file lists of applications if you believe the file was recently opened or accidentally deleted.
The most important thing is to start with the information you remember. Even if you only know that the file was a PDF, was downloaded recently, or contained a particular word in its name, Windows gives you several ways to narrow the search until you locate it.
FAQs
1. What is the fastest way to find a file in Windows 11?
Press Windows + E to open File Explorer, select This PC, and type the file name or part of the name into the Search box. If you know the extension, searching for something like *.pdf can find all files of that type.
2. How can I find a file when I don’t remember its name?
Try searching by the file extension, part of the name, date, or size. For example, if you know it was a video, search for *.mp4. If you downloaded it recently, open Downloads and sort the files by date.
3. Why can’t Windows find a file that I know exists?
The file may be outside the location you searched, excluded from Windows Search indexing, stored on another drive, hidden, or located in cloud storage. Try searching This PC, checking other drives, and using Command Prompt or PowerShell for a deeper search.
4. Can I search for a file using Command Prompt?
Yes. You can use the dir command with /s to search subfolders. For example:
dir C:\*.pdf /s /b 2>nul
This searches the C: drive and its subfolders for PDF files and displays their paths.



