How to Find Large Files on Windows
Large files can quickly consume available storage on a Windows computer. Videos, software installers, backups, downloads, and application data can take up several gigabytes without being noticed.
If your computer is running low on storage, finding the largest files can help you determine what is using the most space before deciding what to remove.
Windows provides several built-in ways to find large files on Windows, including File Explorer, Storage settings, and PowerShell.
Finding large files is useful when:
Large files are not necessarily unnecessary files. Always check what a file contains and whether you still need it before deleting it.
If you first want to see your overall available storage, read How to Check Storage Space on Windows.
File Explorer is the simplest method for most users.
Press:
Windows + E
Open This PC and choose the drive you want to search.
For example:
Local Disk (C:)
Click the search box in the upper-right corner.
You can use Windows search filters to narrow down files by size.
For example, type:
size:gigantic Windows can then display files that fall into its larger size category.
You can also search for specific file types when looking for large media or archive files.
For example:
*.mp4 or:
*.zip This can help you locate large videos, compressed archives, or other file types.
If you are already inside a folder containing many files, you can sort them by size.
Navigate to the folder you want to inspect.
Use the Details view if necessary.
Click the Size column.
The files will be sorted according to their size.
This method is particularly useful for folders such as:
It may not provide a complete picture of the entire drive because files are distributed across many folders.
Windows Storage settings can help identify categories consuming significant amounts of space.
Press:
Windows + I
Go to:
System → Storage
Windows will display categories such as:
Select a category to see more information where available.
For example, if Videos is consuming a large amount of storage, you can investigate your video folders for files that are no longer needed.
Storage settings are useful for understanding what type of data is consuming space, while File Explorer is better for locating individual large files.
The Downloads folder is often a good place to look for files that are no longer needed.
Open:
File Explorer → Downloads
Then switch to Details view and sort by Size.
Look for:
Before deleting anything, make sure the file is no longer needed.
Software installers, for example, may be safely removable if the software is already installed and you do not need the installer again.
PowerShell can be useful when you want to search for files above a specific size.
Open PowerShell and use an appropriate command to search a particular folder.
For example, to find files larger than 1 GB in a folder, you can use:
Get-ChildItem "C:\Users\YourName\Downloads" -File -Recurse -ErrorAction SilentlyContinue |
Where-Object {$_.Length -gt 1GB} |
Sort-Object Length -Descending |
Select-Object FullName, @{Name="SizeGB";Expression={[math]::Round($_.Length / 1GB, 2)}} Replace YourName with your Windows user-folder name.
The results can show the file path and approximate size.
PowerShell is more technical, but it gives you greater control over the search.
Sometimes you already know what type of file is likely consuming your storage.
You can search for common large file types using File Explorer.
*.mp4 *.mkv *.zip *.rar *.iso *.exe These searches can help identify files that are commonly large.
However, do not delete files simply because their extension looks familiar. Verify what the file is used for first.
Large files can appear in many locations.
Common places to check include:
Old installers, archives, videos, and downloaded files can accumulate here.
Video files can consume significant amounts of storage.
High-resolution photographs and image collections can also become large.
Files saved directly to the Desktop still consume space on your system drive.
Large project files, archives, and exported documents may occupy substantial space.
Applications can store caches and other data that may become large over time.
Be especially careful with application and Windows system folders. Do not manually delete unfamiliar files from these locations.
Finding a large file does not mean that you should immediately delete it.
Before deleting a file, ask:
This is particularly important for files inside system and application folders.
If you are simply trying to recover storage space, Windows’ built-in cleanup options are often safer than manually deleting unfamiliar system files.
Potential candidates for removal may include:
Avoid deleting:
When uncertain, leave the file alone until you understand its purpose.
After identifying unnecessary large files, you can:
If your Windows drive continues to show low storage after cleanup, investigate other storage categories rather than repeatedly deleting individual files.
For a broader storage cleanup process, How to Free Up Disk Space on Windows provides the next step.
A single large file is easy to identify, but sometimes storage is consumed by many smaller files inside one folder.
For example, a browser or application may have thousands of files that collectively use several gigabytes.
In this situation, finding one large file may not reveal the real source of the storage usage.
Use Windows Storage settings to identify the category consuming space, then investigate the appropriate folder or application.
Before deleting a large file:
Check the file name → Check its location → Determine what created it → Confirm whether you need it → Back it up if necessary → Delete only when certain.
Do not use file size alone as a reason for deletion.
A large file can be an important backup, project, database, or application component.
Open File Explorer, select a drive or folder, and use the search box with size filters. You can also sort files by the Size column in Details view.
File Explorer is generally the easiest option. Open a folder, switch to Details view, and sort the files by size.
You can use PowerShell to search for files above a specific size, or use File Explorer’s search filters to locate large files.
Start with Downloads, Videos, Pictures, Documents, and Desktop. These locations commonly contain large personal files.
Knowing how much storage space is available on your Windows computer is important for managing…
CPU usage shows how much of your computer's processor is currently being used by Windows,…
RAM, or Random Access Memory, is one of the most important components affecting how your…
Knowing your computer's specifications can help you understand its hardware, troubleshoot problems, check software requirements,…
When a computer develops a problem, it can be difficult to know where to start.…
When a computer starts behaving unexpectedly, the first step should not always be trying random…