How to Check Hidden Files in Windows 10
Windows 10 hides certain files and folders by default — not to be secretive, but to protect system files from accidental deletion or modification. Whether you're troubleshooting a problem, recovering missing files, or just curious about what's lurking in a folder, knowing how to reveal hidden files is a genuinely useful skill.
Why Windows Hides Files in the First Place
Hidden files fall into two broad categories:
- User-hidden files — files or folders that have been manually flagged as hidden, often to reduce desktop clutter
- System-protected files — core operating system files that Windows hides automatically to prevent accidental damage
The second category includes things like the System Volume Information folder, boot configuration files, and application data stored in paths like AppData. Accidentally deleting or renaming these can cause software or Windows itself to misbehave, which is exactly why Microsoft keeps them out of plain sight.
Understanding why they're hidden helps you make smarter decisions about what to do once you can see them.
Method 1: Using File Explorer Options (The Standard Way)
The most straightforward approach requires no technical knowledge and works on all Windows 10 versions.
- Open File Explorer (Windows key + E)
- Click the View tab in the ribbon at the top
- Check the box labeled Hidden items
That's it. Hidden files and folders will immediately appear, shown with a slightly faded icon to distinguish them from normal files.
To also reveal protected operating system files:
- In File Explorer, click View → Options → Change folder and search options
- Go to the View tab
- Uncheck Hide protected operating system files (Recommended)
- Click Apply
⚠️ Windows displays a warning before you do this — and it's worth taking seriously. Protected system files should be viewed, not casually edited or deleted.
Method 2: Using the Control Panel
Some users prefer navigating through Control Panel, especially on older Windows 10 builds where the ribbon-style File Explorer feels unfamiliar.
- Open Control Panel
- Go to Appearance and Personalization → File Explorer Options
- Select the View tab
- Under Hidden files and folders, select Show hidden files, folders, and drives
- Click Apply → OK
This achieves the same result as the File Explorer ribbon method — both modify the same underlying setting.
Method 3: Using the Command Prompt or PowerShell 🖥️
For users comfortable with the command line, hidden files can be revealed without touching any GUI settings at all. This is especially useful when scripting or when File Explorer isn't accessible.
To list hidden files in a directory via Command Prompt:
dir /a:h To remove the hidden attribute from a specific file:
attrib -h filename.txt To apply this recursively across an entire folder and its subfolders:
attrib -h -s /s /d C:YourFolderPath* The /s flag applies the command to all subfolders; /d includes the directories themselves. The -s flag removes the system attribute alongside the hidden one — which matters for some protected files.
PowerShell offers similar capability with more flexibility for filtering and scripting, particularly useful in enterprise or IT management contexts.
What the Hidden Files Actually Are
Once you reveal hidden files, you'll typically see:
| Common Hidden Item | Location | Purpose |
|---|---|---|
AppData folder | C:UsersYourName | Stores app settings, caches, saved data |
NTUSER.DAT | C:UsersYourName | Your personal registry hive |
desktop.ini | Various folders | Folder customization metadata |
System Volume Information | Root drives | Windows restore points and indexing |
$Recycle.Bin | Root drives | Recycled files pending deletion |
hiberfil.sys | C: | Hibernation file (can be large) |
pagefile.sys | C: | Virtual memory paging file |
Seeing these files doesn't mean you need to interact with them. Most exist to support Windows features running quietly in the background.
Factors That Affect What You'll See
Not every Windows 10 setup reveals the same hidden files. Several variables shape what appears:
- User account type — Standard accounts see fewer system-level hidden files than Administrator accounts
- Drive type and partitioning — System drives contain more protected files than secondary storage drives
- Installed software — Applications frequently store hidden folders in
AppDataand other locations; a machine with more software has more hidden data - Windows 10 version — Builds like 1903, 20H2, and 21H2 introduced minor UI changes to File Explorer, though the underlying settings behave consistently
- Encryption and BitLocker status — Encrypted volumes may show additional hidden metadata files
- Organizational policies — On work-managed devices, IT administrators can restrict visibility settings entirely via Group Policy
When Revealing Hidden Files Is (and Isn't) a Good Idea
Viewing hidden files is safe. Modifying or deleting them is where risk enters.
Useful reasons to reveal hidden files:
- Recovering a file you accidentally hid
- Accessing
AppDatato back up or migrate application data - Troubleshooting missing shortcuts or broken app settings
- Investigating unexpected storage usage
Situations requiring extra caution:
- If you're specifically looking at protected system files (
hiberfil.sys,pagefile.sys, registry hives) - On shared or work-managed machines where system integrity is critical
- If you're using third-party tools that automate attribute changes in bulk
The technical skill level required varies significantly depending on what you're actually trying to accomplish once those files are visible.
The Setting Is Not Permanent Unless You Leave It On
One detail worth knowing: enabling Show hidden files in File Explorer stays on until you manually turn it off again. It isn't a one-time toggle. Some users prefer to switch it on, do what they need, and turn it off again — particularly on shared machines or when less experienced users have access to the same account.
What's right for your situation depends on who uses the machine, how often you need access to hidden directories, and your comfort level with what's now visible in every folder you open.