So I've been trying to come up with a filter to do this for awhile but basically I'd like to simply type the name in of a folder (WITHOUT entering the entire path) and have just the files in ONLY that folder be listed.
Is this possible?
list files ONLY in a fuzzy match folder?
Re: list files ONLY in a fuzzy match folder?
Try this to find files (no folders) directly located unde a folder with name Windows:
If you mean by filter: the ones located under Menu:Search > organize Filters .. , you could do that as follows:
All checkboxes should be unchecked.
Replace "abc" with a name of your choice, but avoid existing ones.
Now you can do queries like:
IIRC, "abc" is case sensitive (not tested)
Code: Select all
file: regex:^.*\\windows\\[^\\]*$
Code: Select all
Name = FilesInFolder
Search = file: regex:^.*\\shortfolder:\\[^\\]*$
Macro = abc<shortfolder>
Replace "abc" with a name of your choice, but avoid existing ones.
Now you can do queries like:
Code: Select all
abc:windows
abc:"program files"
Re: list files ONLY in a fuzzy match folder?
WOW thank you SO much!
Quick question: It appears as if i can't put any space after i type abc:"search"
So basically i can't write abc: "search"
Is there a way to fix this?
Quick question: It appears as if i can't put any space after i type abc:"search"
So basically i can't write abc: "search"
Is there a way to fix this?
Re: list files ONLY in a fuzzy match folder?
You're welcome
Let's say you have a query= size:100. This will seach for all files with size 100 bytes.
Now query size: 100. That will search for all files that have a size (that's all files ...) AND have 100 in their name. Totally different result.
If you query abc: "search", it will report all files/folders that meet abc: (that's zero files) AND have search in their name.
Overall result will be 0 files.
That's how things work. A " " (space) means AND in Everything.Quick question: It appears as if i can't put any space after i type abc:"search"
So basically i can't write abc: "search"
Is there a way to fix this?
Let's say you have a query= size:100. This will seach for all files with size 100 bytes.
Now query size: 100. That will search for all files that have a size (that's all files ...) AND have 100 in their name. Totally different result.
If you query abc: "search", it will report all files/folders that meet abc: (that's zero files) AND have search in their name.
Overall result will be 0 files.
Re: list files ONLY in a fuzzy match folder?
Thank you again! Love this program!