How to search for a folder from the Windows 8 Start screen

22,234

Solution 1

Drink the Start Screen Kool-Aid and don't do it! Instead, just type the folder name and let the folder contents appear in the results. Now that the results display full screen, there is room to display lots of files.

If you get too many results that match by something other than folder name, prefix your search with folder: to restrict the search to files with matching folder names only. If you really need to open the folder, open the App Bar for one of the files in the folder and tap "Open file location".

Solution 2

Use this AutoHotKey script:

#O::
Run search-ms:
SendInput ^etype:="File folder"{Space}
return

Usage: Press Windows+O. Type your search string and Enter. Use to select the item. Press Enter to open it.


Setup-free alternative: If the script isn't available:

  • You can get to the Explorer search box with Windows+R
  • Type search-ms:, Enter
  • In the search box, if you type type type:=fol, then type:="File folder" will appear in the autocomplete.
  • Subsequently, both search-ms: and type:="File folder" will appear in the recently used lists.

Canonical path: To make the Explorer address bar show the canonical path instead of a search result address, open the folder with the Open folder location context menu item (ContextMenu+I, I, Enter).

Solution 3

I use Launchy (it's donationware). I've used it for years on Windows 7 for convenience but find it a must-have with Windows 8; basically it bypasses the Metro interface.

Solution 4

I think I just figured it out:

  1. Go to Windows Explorer.

  2. Click on any of the stuff on the left (My Music, Computer, My Documents, wherever you want to search).

  3. Click on the search bar.

  4. Above the right corner of the search bar you'll see a little v and a ?. Click on the v.

  5. You will now see extra search options, click on Type for a drop-down menu. Find Folders there.

  6. Alternatively you can enter your search term in the search bar followed by type:=map (translating that from the Dutch version which says soort:=map, so... not sure if the English version really uses type).

Solution 5

If you pin a folder to the start screen then that folder will appear in a search, albeit as an App.

Lets hope this issue is addressed in Windows 8.1.

Share:
22,234

Related videos on Youtube

Edward Brey
Author by

Edward Brey

Updated on September 18, 2022

Comments

  • Edward Brey
    Edward Brey almost 2 years

    In Windows 7, if you press the Windows key and type the name of a folder, and the folder shows up among the Start menu search results. In Windows 8, if you do the same thing, no folders are listed. The Files filter shows files with matching names, but no folders.

    I realize that you can still search for folders from the Windows Explorer search box, but navigating that way is a bit slow and clumsy. Is there a quicker way, in particular a way to search directly from the Windows 8 Start screen?

    • user3737003
      user3737003 over 11 years
      This was probably Windows 7's most time-saving feature.
    • Edward Brey
      Edward Brey almost 9 years
      Good news! In Windows 10, folders again show up as search results.
  • Edward Brey
    Edward Brey about 12 years
    This is what I tried. I pressed the Windows key to get to the Start screen. Then I typed the name of a folder. No folders appears in the search results. Do you get a different behavior?
  • user3359503
    user3359503 over 11 years
    The ‘foldername:‘ syntax works under the "search files" mode, but it will then return files in the named folder, it seems.
  • Edward Brey
    Edward Brey over 11 years
    In English, the text to filter the Windows Explorer search to folders is type:="File folder". However, filtering isn't the focus here. In Windows 7, from any context, you could press the Windows button and type in the beginning of the name of a folder (without any filter), and it would quickly appear at the top of the search results. The question is how to get this kind of convenience in Windows 8.
  • Achal Dave
    Achal Dave over 10 years
    At least in Windows 8, getting to the search folder involves typing search-ms: instead of lib.
  • Edward Brey
    Edward Brey over 10 years
    @Achal Good idea! The "lib" was just there to get autocomplete to bring up the Libraries path. However, "search-ms:" is more precise and includes any indexed content that isn't under Libraries. I updated my answer accordingly.