Windowsファイルエクスプローラー(Windows File Explorer)でフォルダーを開くと、すべてのコンテンツ、つまりすべてのファイル、すべてのサブフォルダーが表示されます。ただし、それは必ずしも真実ではありません。探しているフォルダに隠しファイルまたはフォルダが含まれている場合、ファイルエクスプローラで隠しファイルの表示を有効にしない限り、 (enabled hidden file view in File Explorer)Windowsはそれらを表示しません。
Windows 10で隠しフォルダーとその中に含まれる隠しファイルを見つける方法を知りたい場合は、以下にリストされているいくつかの方法を使用する必要があります。これには、ファイルエクスプローラー(File Explorer)とWindows PowerShellの秘密の検索ツールを使用してそれらを見つけることや、 FreeCommanderなどのサードパーティの代替手段を使用することが含まれます。
ファイルエクスプローラーを使用してWindows10で隠しファイルとフォルダーを検索する方法(How to Find Find Hidden Files and Folders on Windows 10 Using File Explorer)
不足しているファイルやフォルダを探し出す場合は、ファイルエクスプローラ(File Explorer)の検索ツールを使用するのが最善の方法です。高度な検索パラメーターを使用すると、開いている(Using)ファイルエクスプローラー(File Explorer)ウィンドウを使用して、(自動または手動で)表示によって非表示になっているフォルダーまたはファイルを見つけることができます。
- これを行うには、タスクバー(ファイルエクスプローラー(File Explorer)アイコンが固定されている場合)または[スタート]メニューを使用して、新しい(Start)ファイルエクスプローラー(File Explorer)ウィンドウを開きます。代わりに、[スタート(Start)]メニューを右クリックし、 [ファイルエクスプローラー(File Explorer)]を選択して新しいウィンドウを開くこともできます。
- 新しいファイルエクスプローラー(File Explorer )ウィンドウで、検索するフォルダー(またはドライブ)を開きます。右上の検索バーを使用して、attributes:Hと入力し、 (attributes:H)Enterキー(enter key)を選択して検索を開始します。これにより、[プロパティ(Properties)]メニューで隠しファイル属性が適用されているそのフォルダー内のすべてのファイルとフォルダーが検索されます。
- 検索をさらにカスタマイズする場合は、ファイル名またはフォルダー名(または名前の一部)を検索に追加できます。これを行うには、検索バーのattributes:H(attributes:H)パラメーターの前後にファイル名またはフォルダー名を入力します(例:ファイル属性:H(file attributes:H))。部分一致を検索する場合は、ワイルドカード(例fil* attributes:H)を使用して検索できます。
- ファイルまたはフォルダを見つけたら、ファイルまたはフォルダを右クリックしてポップアップメニューから[ファイルの場所を開く]を選択すると、保存した場所までさかのぼることができます。(Open file location)
WindowsPowershellを使用した隠しファイルと隠しフォルダーの検索(Searching for Hidden Files and Folders Using Windows Powershell)
上記のファイルエクスプローラーの方法は、 (File Explorer)Windows 10で隠しファイルと隠しフォルダーを見つける最も簡単な方法ですが、必ずしも最速であるとは限りません。見逃したファイルをPCですばやく検索したい場合は、WindowsPowerShellを使用して検索することをお勧めします。
新しいWindowsターミナル(newer Windows Terminal)を使用することもできますが、PowerShellは(PowerShell)Windows10ユーザーのデフォルトオプションのままです。以下のコマンドはPowerShell固有であり、古いコマンドライン(Command Line)では機能しません。
開始するには、 [スタート(Start)]メニューを右クリックし、 [ Windows PowerShell(管理者(Windows PowerShell (Admin))]を選択して、新しいPowerShellウィンドウを開きます。
新しいPowerShellウィンドウで、検索するフォルダーまたはドライブに移動します。たとえば、cd C:\と入力すると、メインシステムドライブのルート(最初の)フォルダに移動し、ドライブ全体を検索できるようになります。
cd C:\Program Filesと入力すると、実行する検索は、ProgramFilesフォルダーに含まれるすべてのファイルとサブフォルダーに対してのみ機能します。フォルダを移動したら、ls -Forceと入力して、そこに含まれるファイルとフォルダ(隠しファイルまたはフォルダを含む)のリストを表示します。
フォルダに移動して検索を開始したら、PowerShellウィンドウに次のコマンドを入力し、Enterキー(Enter key)を押して実行しますGet-ChildItem -Filter *.* -Recurse -Force -ErrorAction SilentlyContinue | where { $_.Attributes -match “Hidden”}。
これにより、現在のフォルダー位置にあるすべての隠しファイルとサブフォルダーが検索され、PowerShellウィンドウに一覧表示されます。
検索を開始するためにフォルダディレクトリを一覧表示する場合は、Get-ChildItemの後にコマンドに-Path locationを追加し、 (-Path location )locationを適切なファイルパス に置き換えます。
たとえば、Get-ChildItem -Path C:\Folder -Filter *.* -Recurse -Force -ErrorAction SilentlyContinue | where { $_.Attributes -match “Hidden”} C:\Folder ディレクトリ内のすべての隠しファイルとサブフォルダを検索します。ファイルパスにスペースやその他の特殊文字が含まれている場合は、引用符で囲む必要があります(Get-ChildItem -Path “C:\New Folder” など)。
PowerShellが多数の隠しファイルとフォルダーを見つけると、PowerShellターミナル(PowerShell)の出力はエントリをすばやくスクロールするため、分析が困難になります。これを簡単にするために、Get-ChildItemコマンドの出力をテキストファイルに保存して、自由に検索して確認できるようにすることができます。
これを行うには、コマンドの最後に> log.txt Get-ChildItem -Path “C:\New Folder” -Filter *.* -Recurse -Force -ErrorAction SilentlyContinue | where { $_.Attributes -match “Hidden”} > log.txt)。これにより、 Get-ChildItem(Get-ChildItem)コマンド のターミナル出力を含むlog.txtという名前のファイルが現在アクティブなフォルダーに作成されます。
必要に応じて、代替のファイルパス(例:> C:\Folder\log.txt)またはファイル名(例: hiddenlog.txt )を設定できます。
ログファイルを作成した場合は、cat log.txtと入力して(cat log.txt )PowerShellウィンドウに内容を直接表示できます( log.txtを正しいファイルパスとファイル名に置き換えます)。ファイルエクスプローラー(File Explorer)とメモ帳(Notepad)を使用して、通常どおりファイルを開くこともできます。
サードパーティのアプリを使用して隠しファイルと隠しフォルダを見つける(Locating Hidden Files and Folders Using Third-Party Apps)
Windowsで隠しファイルと隠しフォルダーを見つけるための最良の方法は、上記で説明したようにファイルエクスプローラー(File Explorer)またはWindowsPowerShellを使用することです。(Windows PowerShell)これらの方法が遅すぎる場合、または必要な複雑な検索条件が提供されない場合は、代わりにサードパーティのアプリを使用してPCで隠しファイルを検索できます。
これをサポートするさまざまなツールが存在しますが、1つの良いオプションはフリーウェアのFreeCommanderツールを使用することです。このファイルエクスプローラー(File Explorer)の代替品には、PC上の隠しファイルと隠しフォルダーを見つけることができる強力な検索ツールが含まれています。
開始するには、PCにFreeCommanderをダウンロードしてインストールし、インストールが完了したら起動します。(download and install FreeCommander)FreeCommanderウィンドウで検索を開始するには、キーボードでCtrl + Fファイル(File )] >[検索(Search)]を選択して新しい検索ウィンドウを開きます。
Search files/foldersの検索]ウィンドウで、 [場所(Location)]タブにある[ファイル名]ボックスにファイル名( File name)またはフォルダー名の検索条件を入力します。完全なファイル名を使用することも、ワイルドカード(fileやfil*など)を使用して部分的に一致するものを見つけることもできます。
その下の[検索(Search In)]ボックスで、検索を開始するフォルダーを選択します。これを手動で入力するか(たとえば、 C:\システムドライブ全体を検索する場合)、[追加]ボタン(add button )>[参照(Browse)]を選択して個別に識別します。
Timestamp/Size/Attr 属性]タブを選択し、チェックボックスが表示されるように[非表示(Hidden)属性]チェックボックスを必ず選択してください。他のすべてのチェックボックスを黒く塗りつぶしたままにするか(それらが含まれていることを確認します)、それらを2回選択してチェックを外し、それらの属性を含むファイルを検索から削除します。
(Select)使用可能なすべての検索タブで、必要なその他の検索条件を選択します。検索を開始する準備ができたら、[検索](Find)を選択して開始します。
検索結果は、検索ウィンドウの下部にある[検索結果]タブに表示されます。(Search result )FreeCommanderが見つけた隠しファイルまたはフォルダを開くには、エントリを右クリックして[開く(Open)]を選択します。
Windows10でのファイルの管理(Managing Your Files on Windows 10)
Windows 10で隠しファイルを見つける方法を知るのは簡単です—どこを見ればよいかがわかれば。ファイルエクスプローラー(Explorer)、Windows PowerShell、またはFileCommanderなどのサードパーティ製アプリを使用して作業を実行する(FileCommander)かどうか(Whether)に関係なく、上記の手順は、以前に非表示にしたファイルとフォルダーを見つけるのに役立ちます。
次のステップは、ファイルを適切に管理することです。不足しているファイルを見つけるための高度な検索のヒント(advanced search tips)はたくさんありますが、長期的にアクセスしやすくするために、重要なファイルのバックアップ(backing up your important files)を検討する必要がある場合もあります。他のファイルやアプリケーションのためにディスク領域を解放するために、Windowsで大きなファイルを探す(look for large files on Windows)こともできます。
How to Find Hidden Files and Folders on Windows
When you open a folder in Windows File Explorer, you expect to see the full contents — all the files, all the sub-folders. That isn’t necessarily true, however. If the folder you’re loоking in contains hidden files or folders, Windows won’t show them unless you’ve enabled hidden file view in File Explorer.
If you want to know how to find hidden folders on Windows 10 and any hidden files contained within, you’ll need to use some of the methods we’ve listed below. This includes using secret search tools in File Explorer and Windows PowerShell to locate them, as well as using third-party alternatives like FreeCommander.
How to Find Find Hidden Files and Folders on Windows 10 Using File Explorer
If you’re trying to hunt down a missing file or folder, the best way to do it is to use File Explorer’s search tool. Using advanced search parameters, you can locate any folders or files that have been hidden by view (either automatically or manually) using an open File Explorer window.
- To do this, open a new File Explorer window using your taskbar (if the File Explorer icon is pinned) or via the Start menu. You can also right-click the Start menu and select File Explorer to open a new window instead.
- In the new File Explorer window, open the folder (or drive) that you’re looking to search. Using the search bar in the top right, type attributes:H and select the enter key to begin the search. This searches for all files and folders within that folder that have the hidden file attribute applied to them in the Properties menu.
- If you want to customize the search further, you can add a file or folder name (or partial name) to the search. To do this, type the file or folder name before or after the attributes:H parameter in the search bar (eg. file attributes:H). If you want to search for partial match, you can use a wildcard (eg. fil* attributes:H) to do so.
- Once you’ve located a file or folder, you can trace it back to its saved location by right-clicking the file or folder and selecting Open file location from the pop-up menu.
Searching for Hidden Files and Folders Using Windows Powershell
While the File Explorer method above offers the easiest way to find hidden files and folders on Windows 10, it isn’t necessarily the quickest. If you want to quickly search through your PC for any files you’ve missed, a good alternative is to use the Windows PowerShell to do so.
You can also use the newer Windows Terminal, but PowerShell remains the default option for Windows 10 users. The commands below are PowerShell specific and won’t work with the older Command Line.
To start, open a new PowerShell window by right-clicking the Start menu and selecting Windows PowerShell (Admin).
In the new PowerShell window, move to the folder or drive you wish to search. For instance, typing cd C:\ will move you to the root (first) folder on the main system drive, allowing you to search the entire drive.
Typing cd C:\Program Files means that the search you perform will only work through any files and sub-folders contained in the Program Files folder. Once you’ve moved folders, type ls -Force to view a list of files and folders contained within (including any hidden files or folders).
Once you’ve moved into the folder to begin your search, type the following command into the PowerShell window and press the Enter key to run it: Get-ChildItem -Filter *.* -Recurse -Force -ErrorAction SilentlyContinue | where { $_.Attributes -match “Hidden”}.
This will search for all hidden files and sub-folders in your current folder position and list them in the PowerShell window.
If you’d prefer to list a folder directory to begin the search, add -Path location to your command after Get-ChildItem, replacing location with a suitable file path.
For instance, Get-ChildItem -Path C:\Folder -Filter *.* -Recurse -Force -ErrorAction SilentlyContinue | where { $_.Attributes -match “Hidden”} will search for all hidden files and subfolders in the C:\Folder directory. If the file path contains spaces or other special characters, you’ll need to contain them within quotation marks (eg. Get-ChildItem -Path “C:\New Folder” etc).
If PowerShell locates a large number of hidden files and folders, the PowerShell terminal output will scroll through the entries rapidly, making it difficult to analyze. To make this easier, you can save the output of the Get-ChildItem command to a text file, allowing you to search through and review at your leisure.
To do this, add > log.txt to the end of your command (eg. Get-ChildItem -Path “C:\New Folder” -Filter *.* -Recurse -Force -ErrorAction SilentlyContinue | where { $_.Attributes -match “Hidden”} > log.txt). This will create a file named log.txt in your currently active folder containing the terminal output of the Get-ChildItem command.
You can set an alternative filepath (eg > C:\Folder\log.txt) or filename (eg hiddenlog.txt) as required.
If you’ve created a log file, you can view the contents in the PowerShell window directly by typing cat log.txt (replacing log.txt with the correct file path and file name). You can also open the file as normal using File Explorer and Notepad.
Locating Hidden Files and Folders Using Third-Party Apps
The best methods for finding hidden files and folders on Windows are to use File Explorer or Windows PowerShell as explained above. If these methods are too slow or don’t offer the complex search criteria that you need, you can use third-party apps to search your PC for hidden files as an alternative.
While various tools exist that support this, one good option is to use the freeware FreeCommander tool. This File Explorer replacement includes a powerful search tool that allows you to locate hidden files and folders on your PC.
To start, download and install FreeCommander on your PC and launch it once the installation is complete. To begin a search in the FreeCommander window, select Ctrl + F on your keyboard or select File > Search to open a new search window.
In the Search files/folders window, enter the search criteria for file or folder names in the File name box, located in the Location tab. You can use full file names or find partial matches using a wildcard (eg. file or fil*).
In the Search In box below it, select the folder to begin the search. You can type this manually (eg. C:\ to search the entire system drive) or select the add button > Browse to identify them individually.
Select the Timestamp/Size/Attr tab next and make sure to select the Hidden attribute checkbox so that a tick is visible. Leave all other checkboxes with a solid black check (ensuring that they’re included) or select them twice to uncheck them and remove any files containing those attributes from your search.
Select any other search criteria that you require in all the available search tabs. When you’re ready to begin your search, select Find to begin.
Search results will appear in the Search result tab at the bottom of the search window. To open any of the hidden files or folders that FreeCommander locates, right-click the entries and select Open.
Managing Your Files on Windows 10
Knowing how to find hidden files on Windows 10 is easy — once you know where to look. Whether you use File Explorer, Windows PowerShell, or third-party apps like FileCommander to get the job done, the steps above should help you locate your previously hidden files and folders.
The next step is to manage your files properly. There are plenty of advanced search tips to locate missing files, but you may also need to consider backing up your important files to make them easier to access in the long run. You can also look for large files on Windows to help free up disk space for other files and applications.