Search found 62 matches

by Mizufluffy
Fri Dec 10, 2021 4:08 pm
Forum: Everything 1.5 Alpha
Topic: Feature request: Drag & Drop search results to Folders sidebar for navigation
Replies: 7
Views: 3962

Feature request: Drag & Drop search results to Folders sidebar for navigation

Lately I've been trying out the Folders sidebar with combination of the search bar.
I like how I can quite easily select a folder in the sidebar instead of typing path:"some_full_path_here" in the search bar. However, if I want to go deep down in the directory tree in the Folders sidebar then that ...
by Mizufluffy
Fri Nov 19, 2021 8:57 am
Forum: Suggestions
Topic: Add Columns... -> Select Property
Replies: 17
Views: 16474

Re: Add Columns... -> Select Property

I agree with void with Select Bookmark.
Anyone who doesn't already know about the shortcut (Ctrl+B) might never even find out about the feature. I'll admit I don't use it that often but I think it is a good feature. Although, since the layout is very similar to Organize Bookmarks window, I ...
by Mizufluffy
Wed Nov 17, 2021 8:04 am
Forum: Support
Topic: Request Assistance re/ Regex Search
Replies: 10
Views: 8158

Re: Request Assistance re/ Regex Search


It appears version 1.5 has the features I prefer I will wait for that version - Cheerio

Ah, right. Sorry about my last message then. I've been using 1.5a for months as my main Everything (I still have 1.4 but not in active use) so it's easy for me to forget what 1.5a features are missing from 1 ...
by Mizufluffy
Wed Nov 17, 2021 7:07 am
Forum: Bug report
Topic: multiple partial matches
Replies: 8
Views: 16431

Re: multiple partial matches


How does one find find filenames with dots abc.def.ext

example abc.def@gmail.comhttp using the default "Everything" search filter

I created your example file abc.def@gmail.comhttp on my system and if I search for "abc." then I get 125 results. I wouldn't call it "too many" but I can see what ...
by Mizufluffy
Mon Nov 15, 2021 3:28 pm
Forum: Support
Topic: Request Assistance re/ Regex Search
Replies: 10
Views: 8158

Re: Request Assistance re/ Regex Search

Also I am surprised the full path of the found files does not seem to be an option for display in the found list I am unable to locate such an option other than to hover over each file name May I suggest such an option be provided as it is more convenient to view the entire list than to hover over ...
by Mizufluffy
Sat Nov 13, 2021 2:27 pm
Forum: General
Topic: Sort by number at the end of folder name
Replies: 4
Views: 5417

Re: Sort by number at the end of folder name


What do the Regular Expression Match columns show?

Thanks.

If you search using regular expressions, for example with regex: function, then it shows the part that matches the regular expression. For example, on the example below I created some random files that all had something in common, in ...
by Mizufluffy
Sat Nov 13, 2021 11:37 am
Forum: Support
Topic: Request Assistance re/ Regex Search
Replies: 10
Views: 8158

Re: Request Assistance re/ Regex Search

I'd like to add a few things. For example, if I'm using the following regex (with regex mode enabled)
C:\\ProgramData\\.+\.exe
Then I tend to get a lot of paths like this as a result:
C:\ProgramData\Microsoft\Windows\WER\ReportArchive\AppCrash_bugreport.exe ...
by Mizufluffy
Wed Nov 10, 2021 2:57 pm
Forum: Suggestions
Topic: add visual sort column and file explorer would be perfect
Replies: 4
Views: 5430

Re: add visual sort column and file explorer would be perfect


Yes, there's an Advanced Search (TODO) placeholder under the View menu already.

Oh, you are right. I was looking at View menu when I was typing my previous message but I must have missed it. I believe I was looking the area between Menu and Customize... (TODO) so basically everything above the ...
by Mizufluffy
Wed Nov 10, 2021 9:42 am
Forum: Everything 1.5 Alpha
Topic: Filters behavior in Filters sidebar
Replies: 5
Views: 7685

Re: Filters behavior in Filters sidebar


But if you select all 3 filters Everything will search for .txt and .url files and ALL the files and folders in C:\Music.
I get it, but in my opinion it should search for only .txt and .url files in C:\Music.

By this logic selecting ".txt" and ".url" filters would not find any files because no ...
by Mizufluffy
Wed Nov 10, 2021 9:03 am
Forum: Suggestions
Topic: add visual sort column and file explorer would be perfect
Replies: 4
Views: 5430

Re: add visual sort column and file explorer would be perfect


I have plans to turn the Advanced Search into a sidebar.

A folder/treeview sidebar is in development.

I hope this will be something you can enable / disable because I personally like the search field and how most of the space has been reserved for the results. I think the Advanced Search is a ...
by Mizufluffy
Sun Nov 07, 2021 10:56 pm
Forum: Suggestions
Topic: Allow Folders to be included with video or picture search
Replies: 6
Views: 6901

Re: Allow Folders to be included with video or picture search

If I understood this correctly, you want to search for word "beach" from folder names but also from file names that have a certain extension? In that case you can do something like this:
<folder: | ext:jpg;png;mp4> beach
In the first part, <folder: | ext:jpg;png;mp4>, there is a group and OR with ...
by Mizufluffy
Sun Nov 07, 2021 10:46 pm
Forum: Support
Topic: exclude folders in search
Replies: 1
Views: 3029

Re: exclude folders in search

If you want to see only files in search results then you can add this

Code: Select all

files:
to the search field. If you want to see only folders then you can add this

Code: Select all

folders:
to the search field.

Take note of the colon after the word because it indicates it's a function.
by Mizufluffy
Fri Nov 05, 2021 9:50 am
Forum: Support
Topic: Filter results using characters "range"
Replies: 9
Views: 7911

Re: Filter results using characters "range"


The following searches will only match the first 3-5 character word with all digits:

regex:\b(\d{3,5})\b regular-expression-match-1:123
(this will also match 2123)

Try a regex search on the regular-expression-match-1:
regex:\b(\d{3,5})\b regex:regular-expression-match-1:^0*123

If you know where ...
by Mizufluffy
Thu Nov 04, 2021 10:04 pm
Forum: Support
Topic: Filter results using characters "range"
Replies: 9
Views: 7911

Re: Filter results using characters "range"


123.jpg
01234.jpg
1234.jpg
12345.jpg
and
AS00124567 12345.jpg


So, the file name must contain substring 123 separated by a word boundary (such as a whitespace character) but that substring may have other characters too, right? If we look at AS00124567 12345.jpg then can you tell does the ...
by Mizufluffy
Thu Nov 04, 2021 2:52 pm
Forum: Support
Topic: Filter results using characters "range"
Replies: 9
Views: 7911

Re: Filter results using characters "range"

I can think of two ways to do this. One is to use len: function, for example len:<=5 (length is less or equal to 5). The other way would be using regex, for example regex:"^.{1,5}$". Character ^ marks the start of a string, period (.) means any character, length is in { and } brackets (from 1 to 5 ...
by Mizufluffy
Fri Oct 22, 2021 6:11 am
Forum: Support
Topic: Search results in status bar, e.g. xx objects (xx files, xx directories)
Replies: 12
Views: 13650

Re: Search results in status bar, e.g. xx objects (xx files, xx directories)


Everything 1.5.0.1281a - Status bar: 0 objects (0 files, 0 folders)

I think I personally prefer that one the most. That way I can see total count first just like before, then file count because 1) I tend to prioritize files over folders, 2) in my case I usually have more files in results than ...
by Mizufluffy
Wed Oct 20, 2021 4:58 pm
Forum: Suggestions
Topic: A function suggestion similar to childfilecount but with full path depth
Replies: 5
Views: 7017

Re: A function suggestion similar to childfilecount but with full path depth

raccoon wrote: Wed Oct 20, 2021 4:38 pmAre there columns for descendant-count?
At least in the 1.5a when right clicking column title area and then Add Columns... you can find it on the list.
2021-10-20 19_53_54-path__c__temp_ folder_ - Everything (1.5a) 1.5.0.1280a (x64).jpg
2021-10-20 19_53_54-path__c__temp_ folder_ - Everything (1.5a) 1.5.0.1280a (x64).jpg (162.2 KiB) Viewed 6914 times
by Mizufluffy
Wed Oct 20, 2021 1:32 pm
Forum: Suggestions
Topic: A function suggestion similar to childfilecount but with full path depth
Replies: 5
Views: 7017

Re: A function suggestion similar to childfilecount but with full path depth

Oh, wow. That's exactly what I want. I just tried it and it is indeed working how I wanted.
I usually look through Help > Search Syntax because the list is short enough, however, I'm aware that under Search > Insert Function... there is this extended list of functions in 1.5a but it's still work in ...
by Mizufluffy
Tue Oct 19, 2021 12:30 pm
Forum: Suggestions
Topic: A function suggestion similar to childfilecount but with full path depth
Replies: 5
Views: 7017

A function suggestion similar to childfilecount but with full path depth

I recently tried File List Slots because it let me have a set of predetermined list of folders. My idea was then to find those folders that would contain a certain number of files regardless of the path depth. Normally I would use childfilecount: for something similar to this but in this case it won ...
by Mizufluffy
Fri Oct 15, 2021 3:45 pm
Forum: General
Topic: How do i exclude "commas" from search results?
Replies: 10
Views: 12191

Re: How do i exclude "commas" from search results?


File name Apple, Mango and Orange

if i search

Apple, Mango, and Orange = Results DOESN'T show up

Apple, Mango, Orange = Results DOESN'T show up

see how inconsistent the symbols are while searching?

so this is the same issue as the + symbol, i just want to exclude commas or symbols while ...
by Mizufluffy
Thu Oct 14, 2021 2:56 am
Forum: General
Topic: How do i exclude "commas" from search results?
Replies: 10
Views: 12191

Re: How do i exclude "commas" from search results?


ok, while commas do ineed work, i still need an exclude option, for example Apple + Mango, it just wouldn't show results unless i remove the + symbol

It's a little bit hard for me to understand what kind of file names you are expecting to find. Do you have any actual full file names you could ...
by Mizufluffy
Mon Oct 11, 2021 3:47 pm
Forum: Suggestions
Topic: Quick Copy file to folder path of another file within Search Everywhere
Replies: 12
Views: 16615

Re: Quick Copy file to folder path of another file within Search Everywhere

BrettUSA269 wrote: Mon Oct 11, 2021 3:31 pm I downloaded version Version 1.5.0.1279a (x64) but it did not copy my settings from Version 1.4.1.1005 (x64)

Is there a way I can do this vs having to setup everything again?
These may help you:
Import settings from Everything 1.4
Import other settings
by Mizufluffy
Sat Oct 09, 2021 11:03 pm
Forum: General
Topic: How do i exclude "commas" from search results?
Replies: 10
Views: 12191

Re: How do i exclude "commas" from search results?

Here is a simple example. I created a few files with similar names.
apple , mango.fruits
apple mango.fruits
apple, mango.fruits
apple,mango.fruits
In the image below I had three different searches going:
apple mango
apple , mango
"apple , mango"
The first one has no comma and can find all ...
by Mizufluffy
Fri Oct 08, 2021 3:02 pm
Forum: Suggestions
Topic: Add Copy Path Function
Replies: 5
Views: 8668

Re: Add Copy Path Function

horst.epp is correct.

Here is an example of the context menu with a screenshot:
Copy Full Path to Clipboard - "C:\temp\New Text Document.txt"
Copy Path to Clipboard - "C:\temp"
Copy Name to Clipboard - "New Text Document.txt"
Everything 1.5a Context Menu.jpg

If you can't see those options yet ...
by Mizufluffy
Fri Oct 08, 2021 6:22 am
Forum: Support
Topic: Searching only the desktop folder.
Replies: 10
Views: 11316

Re: Searching only the desktop folder.


Try one of the following (untetsed, btw):

metabolic \desktop\
\desktop\ metabolic
shell:desktop metabolic

\desktop\ file:metabolic
shell:desktop file:metabolic

(there are more possibilities)

I tested these for you. I created a metabolic.txt file in two different locations.
metabolic ...
by Mizufluffy
Thu Oct 07, 2021 4:06 am
Forum: Support
Topic: Bookmarks comments/descriptions
Replies: 3
Views: 3655

Re: Bookmarks comments/descriptions

harryray2 wrote: Wed Oct 06, 2021 11:07 am Apologies if I've asked before. I can't remember.
That is why the forum has a search function. I did a quick search for "bookmark comment" and found this
comments for bookmarks and filters from Aug 19, 2021.
by Mizufluffy
Tue Oct 05, 2021 4:56 am
Forum: Suggestions
Topic: Heuristic matching
Replies: 5
Views: 8681

Re: Heuristic matching


Could you please do a breakdown of the two terms? Thanks

regex:S\d\dE\d\d
S - Matches letter S
\d - Matches a digit
E - Matches letter E
So it has S, two digits, E and two digits, for example S01E01

regex:.S\d\dE\d\d
Very similar to previous one but it has . at the beginning.
. - Matches ...
by Mizufluffy
Thu Sep 23, 2021 8:27 am
Forum: Everything 1.5 Alpha
Topic: Type: File shows when the results area is empty
Replies: 4
Views: 6755

Re: Type: File shows when the results area is empty

I tried Everything-1.5.0.1276a.x64-Setup-m1.exe (although the link you provided was pointing at Everything-1.5.0.1276a.x64-Setup.exe), and now the Type column appears to be working correctly. It does not show any values when the search, and the result area, is empty.
by Mizufluffy
Thu Sep 23, 2021 6:36 am
Forum: Everything 1.5 Alpha
Topic: Type: File shows when the results area is empty
Replies: 4
Views: 6755

Type: File shows when the results area is empty

After installing the latest alpha, version 1.5.0.1276a (x64), I noticed that column Type has value File even when there are no files listed, for example when the search field is completely empty. I don't recall this behaviour from the previous version, and I often start with empty search and Type is ...
by Mizufluffy
Sun Sep 19, 2021 1:59 am
Forum: Everything 1.5 Alpha
Topic: Everything finds “.” (period) when searching for “•”
Replies: 7
Views: 8369

Re: Everything finds “.” (period) when searching for “•”

void wrote: Sat Sep 18, 2021 11:29 pm Please try the following search:

diacritics:•
I noticed that another alternative option that works is
regex:•
by Mizufluffy
Wed Sep 15, 2021 5:39 pm
Forum: General
Topic: How do I set up a pattern to exclude the "node_modules" and ".git" folders from being indexed?
Replies: 5
Views: 9759

Re: How do I set up a pattern to exclude the "node_modules" and ".git" folders from being indexed?


Can you please tell me —«everything 1.5a» is stable? What is your experience with 1.5a? Or is it still too early a version to upgrade to it?
In my personal experience with 1.5a it has been working well, and void has been fixing up quite quickly when they are being reported and there has been ...
by Mizufluffy
Tue Sep 14, 2021 4:01 pm
Forum: General
Topic: How do I set up a pattern to exclude the "node_modules" and ".git" folders from being indexed?
Replies: 5
Views: 9759

Re: How do I set up a pattern to exclude the "node_modules" and ".git" folders from being indexed?

It might help if you added those filters each on their own line? Here's a simple example, tested in Everything 1.4:
Everything_Exclude_Filter.jpg

The exclude filter in the options allows only excluding folders but there is this Temporary Excludes feature in Everything 1.5a that allows excluding ...
by Mizufluffy
Sat Sep 11, 2021 9:07 pm
Forum: Everything 1.5 Alpha
Topic: Poor visibility of EXCLUDE folder list in Options
Replies: 3
Views: 4329

Re: Poor visibility of EXCLUDE folder list in Options

I can also resize Everything Options window, and the excluded folders list because of that, without problems. I was even able to drag a border all the way to end of my second monitor so basically about 2x 1920 pixels wide in total.
by Mizufluffy
Fri Sep 03, 2021 3:47 am
Forum: Everything 1.5 Alpha
Topic: Bookmark for “rc:today” does not remember sort setting
Replies: 17
Views: 11689

Re: Bookmark for “rc:today” does not remember sort setting

@SuperDude

Would this perhaps work?
D:\Everything64\Everything64.exe -s "wfn:%1"
I can't say I'm familiar with Everything command line options much but according to https://www.voidtools.com/support/everything/command_line_options/ the -s (or -search ) sets the search text. This in a theory ...
by Mizufluffy
Sun Aug 29, 2021 9:25 am
Forum: Support
Topic: Search Folders then See the SubItems from all results of folders
Replies: 4
Views: 5689

Re: Search Folders then See the SubItems from all results of folders

I actually yesterday had to fix one of my bookmarks to something similar like this and realized it didn't quite work as expected in my case. This is because
files: regex:pathpart:".*\\[^\\]*this:[^\\]*$"
finds paths where search term is a substring of another word. For example, fact is a ...
by Mizufluffy
Thu Aug 26, 2021 4:55 pm
Forum: Suggestions
Topic: File sequences displayed in one row
Replies: 9
Views: 12843

Re: File sequences displayed in one row


Regex syntax is a mystery to me, I need to dig into it definitely.

If I may, I'd like to suggest a few websites that could help you get started if you want to dig into regex.

https://www.regular-expressions.info/index.html
Quick Start, Tutorials, Examples, Pitfalls and a lot more, a good ...
by Mizufluffy
Mon Aug 23, 2021 12:58 pm
Forum: General
Topic: Locating files in real time as they are created ?
Replies: 5
Views: 9370

Re: Locating files in real time as they are created ?

Index Journal might work for your purpose. You can find it under the menu Index > Index Journal. You can track various changes to the file system with it such as file or folder creating, renaming, moving and deleting.

I filtered it to one folder in this case because without any kind of filtering ...
by Mizufluffy
Sun Aug 22, 2021 4:36 am
Forum: Support
Topic: Search Folders then See the SubItems from all results of folders
Replies: 4
Views: 5689

Re: Search Folders then See the SubItems from all results of folders

I don't know how this could be done in 1.4 but I have an alternative solution for 1.5a (tested in 1.5.0.1272a). This search lists files if the direct parent folder includes the searched word.

For example, it can find files in
C:\temp\theHalloweenHere
C:\temp\theHalloweenHere\halloween
C:\temp ...
by Mizufluffy
Fri Aug 20, 2021 6:22 am
Forum: Support
Topic: Always limit search to specified folders
Replies: 2
Views: 4906

Re: Always limit search to specified folders

Easiest way to do this would most likely to follow the steps below. First disable NTFS volumes from the index. Then add the folders you want. You don't need to exclude anything unless it is a subfolder in your added folders.

Options > Indexes > NTFS:
Try to remove the drives you can. Those that ...
by Mizufluffy
Sat Aug 14, 2021 6:07 pm
Forum: Support
Topic: Filter with column selection?
Replies: 6
Views: 5519

Re: Filter with column selection?

Looking at filter or bookmark creation in 1.4, neither has an ability to select columns. However, the ability to select columns for filters or bookmarks can be found in 1.5a (I'm currently using 1.5.0.1272a).

In 1.5.0.1272a:
For example, a filter:
2021-08-14 20_57_29-Edit Filter.jpg
and the ...
by Mizufluffy
Fri Aug 06, 2021 1:54 pm
Forum: Support
Topic: Search_content_Return_both_file_name_and_content?
Replies: 3
Views: 5133

Re: Search_content_Return_both_file_name_and_content?

Let's say I have three text files:
" Manchester.txt " that has text "Manchester" in the content,
" Manchester (Not in Content).txt " that has no text "Manchester" in the content and
" M-something.txt " that has Manchester in the content but not in the file name.

If I search for Manchester I get ...
by Mizufluffy
Wed Aug 04, 2021 1:01 pm
Forum: Everything 1.5 Alpha
Topic: Filter/Bookmark keyboard shortcuts in search field
Replies: 1
Views: 3527

Filter/Bookmark keyboard shortcuts in search field

Is there an option or setting to disable Filter/Bookmark keyboard shortcuts when search field has focus? I'm using Everything 1.5.0.1270a.
I noticed some keyboard shortcuts can cause problems while searching. For example, let's say I want to type a character } and I have a bookmark shortcut CTRL ...
by Mizufluffy
Tue Jul 27, 2021 3:34 pm
Forum: Everything 1.5 Alpha
Topic: Removing a column in results view removes the same home column
Replies: 1
Views: 6423

Removing a column in results view removes the same home column

In Tools > Options > General > Home I have set up columns Name;Path;Size;Date Modified;Type.
By default these are showing correctly in the result view.
However, if I temporarily remove a column(s) either manually (right clicking column and deselecting it) or, for example, use a bookmark that has a ...
by Mizufluffy
Tue Jul 27, 2021 8:03 am
Forum: Everything 1.5 Alpha
Topic: Secondary sorting for a filter
Replies: 3
Views: 11125

Re: Secondary sorting for a filter

Awesome! Thanks a lot for this feature. I tried it a little and it seems to work exactly how I was hoping for. This gives a lot more freedom when defining custom searches for filters and bookmarks.
by Mizufluffy
Fri Jul 23, 2021 8:41 pm
Forum: General
Topic: List of all file extensions used
Replies: 22
Views: 32498

Re: List of all file extensions used

Do you mean and as in "2 and 3"? Not really. It simply describes a range from one value to another value. For example, {5,50} would mean "from 5 to 50" instead of "5 and 50".
Also, it is possible to leave upper value out and do {5,} in which case it means "5 or more".
by Mizufluffy
Fri Jul 23, 2021 8:11 pm
Forum: General
Topic: List of all file extensions used
Replies: 22
Views: 32498

Re: List of all file extensions used


Thanks that's useful, but my problem is I'm trying to include extensions with just 2 or 3 characters. I can get rid of a one character extension in a silly way with !*.? but that doesn't help with more than 3.

If you want both 2 and 3 character long extensions then you can simply do
regex ...
by Mizufluffy
Fri Jul 23, 2021 7:55 pm
Forum: General
Topic: List of all file extensions used
Replies: 22
Views: 32498

Re: List of all file extensions used


My next problem is, and I don't think I'll work this one out myself, is to limit the extension to three letters....exe .mp4 etc. There are some files with just one,two or many letters in the extension
If you add this regex in your search then it should limit it to 3 characters:
regex:"\.\w{3 ...
by Mizufluffy
Fri Jul 23, 2021 3:20 pm
Forum: General
Topic: List of all file extensions used
Replies: 22
Views: 32498

Re: List of all file extensions used

What I just tried myself, after reading your question, was this:
First I added 'Extension' column: Right click one of the column titles > Add Columns... > Everything Properties > Extension > Ok.
Then I searched for this:
files: distinct: sort:extension

I took a look at the list it gave me and ...
by Mizufluffy
Fri Jul 23, 2021 6:11 am
Forum: Everything 1.5 Alpha
Topic: Unremovable Name column
Replies: 4
Views: 7570

Re: Unremovable Name column

I mean, yeah, /hide_extension=1 does the job but the thing is I like seeing extensions basically 99% of the time so having to switch between /hide_extension=0 and /hide_extension=1 does not seem like an ideal solution just for a few special cases. However, I think I found somewhat decent way to deal ...
by Mizufluffy
Fri Jul 23, 2021 5:02 am
Forum: Everything 1.5 Alpha
Topic: Unremovable Name column
Replies: 4
Views: 7570

Unremovable Name column

I'm a little bit curious why the Name column seems to be unremovable.

When right clicking column header to add, orginize etc. them, 'Name' is shown as active but uneditable. If I go to 'Organize Columns' and remove 'Name' column from there and click OK then 'Name' column stays and nothing seems to ...