2

Specifically,

When I'm in file explorer. I type in the search box in some folder, I type (1). And I want to find all the files with that little piece, and isolate them.

But when I type (1). open parentheses, one, close parentheses. It gives me the files with (1). But it also shows me files with _1 _ or just 1 in general.

Why doesn't it isolate what you've specifically typed in?

2 Answers2

1

Use quotes to tell the search that you want literal parentheses: "(1)"

Otherwise, unquoted parentheses mean a sub-query, like: (draft OR final).docx

I would use this kind of thing to find file duplicates: ~"*(1).txt"

  • ~:match entire file name from the start
  • ":double-quotes to allow for wildcards
  • *: any file base name
  • .txt": and an exact end

The entire syntax documentation can be found here: https://learn.microsoft.com/en-us/windows/win32/search/-search-3x-advancedquerysyntax#query-operators

Cpt.Whale
  • 10,914
0

Two things:

(1) Search from the Taskbar using the Indexed Search is often better to use for many things.

(2) Search from the Explorer bar works and does offer advanced settings.

(a) Constrain your text search with quotations marks to refine your search.

I use quotation marks frequently.

(b) Once a search term has been entered, click on Search in the ribbon and further constrain your search.

Description attached here.

Windows File search settings

Note: For all frequent Windows searches, make sure you have Indexing enabled and have your common locations indexed. This will help find things much faster.

Index Locations