1.When doing a search,I want to get only file names that contains what I'm searching for(excluding folders)
file: or !folder: or !attrib:D doesn't help
2.I also want to search for files only that start with what I'm searching for.
I often want to search that way and I often almost create a thread about it but then I remember that "\something" works(if I remember correctly)but now no matter what I try(I was before on WinXP and now I'm on Win7 x64 with the x64 version of everything),I always get files and folder names that start with what I'm searching for.
1.3.4.686 (x64) on Win 7 x64 Ultimate SP1
How to search for files only and names that start with...
Re: How to search for files only and names that start with..
file: does not work when regex is enabled.1.When doing a search,I want to get only file names that contains what I'm searching for(excluding folders)
file: or !folder: or !attrib:D doesn't help
There is currently no search option to limit the results to files only when regex is enabled.
You could create a file only filter and enabling that filter for use with regex.
Use abc* to find files and folders starting with abc.2.I also want to search for files only that start with what I'm searching for.
Note: Match whole filename when using wildcards must be enabled for this to work (this option is enabled by default).
With regex disabled:
Code: Select all
file: startwith*
Re: How to search for files only and names that start with..
Hmm,I guess the whole problem was that I was adding \ infront of the file name.
Thanks for the info
Thanks for the info