Search found 4905 matches

by NotNull
Thu Apr 04, 2024 4:50 pm
Forum: Support
Topic: New column displaying a part of filename
Replies: 4
Views: 339

Re: New column displaying a part of filename

sk2107 wrote: Thu Apr 04, 2024 2:48 pm Can I add another column to have the length of the result (len of A column)
Nobody is stopping you ;)

Code: Select all

regex:^(.+?)#   add-column:A;B   A-label:=Category   A:=regmatch1:   B-label:=Length   B:=len($regmatch1:) 
by NotNull
Thu Apr 04, 2024 2:30 pm
Forum: Support
Topic: New column displaying a part of filename
Replies: 4
Views: 339

Re: New column displaying a part of filename

If you want the Category to include the #:

Code: Select all

regex:^(.+?#)   add-column:A   A-label:=Category   A:=regmatch1: 
Without the #:

Code: Select all

regex:^(.+?)#   add-column:A   A-label:=Category   A:=regmatch1: 
by NotNull
Wed Apr 03, 2024 8:00 pm
Forum: General
Topic: Everything 1.4 or 1.5 Alpha for Win 11 Pro?
Replies: 2
Views: 351

Re: Everything 1.4 or 1.5 Alpha for Win 11 Pro?

1.5 is faster than 1.4.
1.5 is stable, but 1.4 is even more stable.

If you ever happen to run into an issue, it gets fixed in no time.


My advice: Go for 1.5. There are so many new features to discover that will make your life easier.
by NotNull
Wed Apr 03, 2024 7:52 pm
Forum: Support
Topic: Second instance, separate database?
Replies: 7
Views: 535

Re: Second instance, separate database?

Very well feasible. Make use of the named instance feature of Everything. Installing the service is not needed for FAT32 drives. Assuming Everything 1.4: - Run the following command everything.exe -instance "L-Drive" -choose volumes - Run the following command everything.exe -instance &quo...
by NotNull
Mon Apr 01, 2024 7:13 pm
Forum: Everything 1.5 Alpha
Topic: ❓ Content search, regex search
Replies: 2
Views: 222

Re: ❓ Content search, regex search

The following works here. Make sure there are no extra characters after &nbsp; (like a <space>) as regex*: treats all text after that as literal. regex*:content:<p dir="RTL" align="justify" dir="rtl"><span lang="en-us"><font size="5">&nbsp; I...
by NotNull
Mon Apr 01, 2024 7:03 pm
Forum: Everything 1.5 Alpha
Topic: Context menu items in Opus also possible in Everything?
Replies: 1
Views: 112

Re: Context menu items in Opus also possible in Everything?

What happens if you try these context menu entries from within Everything?
by NotNull
Mon Apr 01, 2024 7:00 pm
Forum: General
Topic: Searching Filenames witch Space before Extension
Replies: 2
Views: 347

Re: Searching Filenames witch Space before Extension

\s(?=[^.]*\.[^.]*$) Loose the first [^.] as that will search for any file/foldername that contaains a space anywhere in the stem: regex:"\s(?=\.[^.]*$)" Somewhat simpler: Everything 1.4: file: regex:" \.[^.]+$" Everything 1.5: endwith:stem:" " (If you are running versi...
by NotNull
Mon Apr 01, 2024 12:16 pm
Forum: Everything 1.5 Alpha
Topic: Yet another distinct: question ..
Replies: 5
Views: 366

Re: Yet another distinct: question ..

Crystal clear. Thanks!
by NotNull
Mon Apr 01, 2024 12:13 pm
Forum: Everything 1.5 Alpha
Topic: Finding unique files between 2 folders based on hash.
Replies: 19
Views: 1134

Re: Finding unique files between 2 folders based on hash.

Celestial92 wrote: Mon Apr 01, 2024 5:40 am The main purpose is to make sure that all files which exist in one directory also exist in the other other directory, but some files have different filenames
And that is exactly what it should do.
Will require an Everything update though. When that comes out, I will post a solution here.
by NotNull
Sun Mar 31, 2024 8:32 pm
Forum: Everything 1.5 Alpha
Topic: Easter egg?
Replies: 1
Views: 147

Easter egg?

Just found a new (undocumented?) feature: the use of \\ in searches to activate wildcard-matching. For example searching for win\\ot will get expanded to **win**\**ot** . It will find C:\Windows\system32\notepad.exe (among others). And it is intentional too. This is what the debug log has to say abo...
by NotNull
Sun Mar 31, 2024 2:47 pm
Forum: Everything 1.5 Alpha
Topic: Yet another distinct: question ..
Replies: 5
Views: 366

Re: Yet another distinct: question ..

Thanks for restoring my sanity :) Some related questions: Does distinct: parse all properties at once or does it try to match properties in order of appearance and stops at the first "mismatch"? I realize that is a bit vague, so formulated differently: What is faster: distinct:name;md5 or ...
by NotNull
Sun Mar 31, 2024 2:35 pm
Forum: Everything 1.5 Alpha
Topic: Dupes with regex extract formula
Replies: 7
Views: 397

Re: Dupes with regex extract formula

The related filename.lnk file in %APPDATA%\Microsoft\Windows\Recent\ also temporary disappears.

(probably for the same reason, but mention it anyway)
by NotNull
Sun Mar 31, 2024 9:38 am
Forum: Everything 1.5 Alpha
Topic: Suggestion regarding renaming:execute multi presets at once
Replies: 1
Views: 110

Re: Suggestion regarding renaming:execute multi presets at once

Did you know that after pressing OK in the Rename dialog, pressing <F2> when back in the result list will open your renamed files in the dialog again, ready for a second pass.
by NotNull
Sat Mar 30, 2024 10:00 pm
Forum: Everything 1.5 Alpha
Topic: Enumerate file groups
Replies: 9
Views: 549

Re: Enumerate file groups

I don't have an answer (can't find a way to make this work), but do have questions:

What makes it called "File 0"? the first file in the result list with that specific size?
Can there also be a "File 2" (/3/4/...) in this list?
by NotNull
Sat Mar 30, 2024 9:55 pm
Forum: Everything 1.5 Alpha
Topic: How to add Version and Product Version to status bar?
Replies: 1
Views: 114

Re: How to add Version and Product Version to status bar?

Code: Select all

[if:#version:, Version #version:,]  [if:#productversion:, ProductVersion #productversion:,]
statusbar format syntax
by NotNull
Sat Mar 30, 2024 8:10 pm
Forum: Everything 1.5 Alpha
Topic: Yet another distinct: question ..
Replies: 5
Views: 366

Yet another distinct: question ..

I think I still don't understand distinct: Why is 1stdout.txt not shown in the third Everything window? Its regmatch1+md5 combination is even unique. 2024-03-30 20_59_13-file_ regex_(_T___hash__folder1__)(._$)_ _ regex_(_T___hash__folder2___)(._$) .png 2024-03-30 21_00_14-file_ regex_(_T___hash__fol...
by NotNull
Sat Mar 30, 2024 7:54 pm
Forum: Everything 1.5 Alpha
Topic: Finding unique files between 2 folders based on hash.
Replies: 19
Views: 1134

Re: Finding unique files between 2 folders based on hash.

I think there is a solution using just Everything. When tested, it is largely working but there is an issue with the current iomplementation of the distinct: function. Or much more likely: my understanding of it. When that is sorted out, will reply here (might take a couple of days). The (planned) m...
by NotNull
Sat Mar 30, 2024 7:53 pm
Forum: Everything 1.5 Alpha
Topic: [Suggestion] preserving /restart
Replies: 1
Views: 109

Re: [Suggestion] preserving /restart

Everything Sessions are on the to-do list of Everything 1.5.
Once implemented, re-opening tabs/windows should be possible.
by NotNull
Sat Mar 30, 2024 7:43 pm
Forum: Off-topic discussion
Topic: Automating a task
Replies: 9
Views: 2321

Re: Automating a task

If you answer the questions I asked, I will likely have a solution for you: a script that will extract the zipfile(s) to the right folder without further interaction.
If the information is personal or otherwise not meant for the public, you can send me a PM too.
by NotNull
Tue Mar 26, 2024 9:28 pm
Forum: Suggestions
Topic: Rebrand
Replies: 5
Views: 1724

Re: Rebrand

The one thing I don't love though, the one thing that isn't great... is its name. "Everything". It leaves something to be desired. It causes confusion in conversations. Not half as bad as calling a word processor ... Word ;) Although I had the same thoughts as you the first days of using ...
by NotNull
Tue Mar 26, 2024 8:23 pm
Forum: Everything 1.5 Alpha
Topic: Bring back "Allow round bracket grouping" in Options, Search pane
Replies: 5
Views: 1075

Re: Bring back "Allow round bracket grouping" in Options, Search pane

IIRC, this setting was left out as its use was ambiguous and could give incorrect results: round brackets can be part of filenames too. <> on the other hand can not be part of a filename. The setting is still available. Not in the Options GUI (including the Advanced settings), but by directly editin...
by NotNull
Mon Mar 25, 2024 8:10 pm
Forum: Off-topic discussion
Topic: Automating a task
Replies: 9
Views: 2321

Re: Automating a task

So .. what aret hese zip-files called? (what pattern describes their names?) Are they all in the same folder? Are the "00 Excel*"foldernames in the zipfiles or based on the names of the zipfiles? Please be as specific as possible as a wrong description leads to a wrong answer and all work ...
by NotNull
Mon Mar 25, 2024 3:57 pm
Forum: Everything 1.5 Alpha
Topic: Compare 2 file lists with each other?
Replies: 58
Views: 3816

Re: Compare 2 file lists with each other?

void wrote: Sun Mar 24, 2024 11:40 pm

Code: Select all

"!"
Clever!
by NotNull
Mon Mar 25, 2024 3:49 pm
Forum: Suggestions
Topic: Make the update of the database optional at the start of Everything
Replies: 11
Views: 9899

Re: Make the update of the database optional at the start of Everything

Added to that:

Everything 1.5 also has a menu option to rescan non-NTFS volumes on demand:
Menu => Index => Rescan => <select your drive>
by NotNull
Mon Mar 25, 2024 3:44 pm
Forum: Support
Topic: Help with filtering the folders which contain a specific extension
Replies: 7
Views: 4114

Re: Help with filtering the folders which contain a specific extension

That will be much easier to do in Everything 1.5 (compared to version 1.4) :

Code: Select all

folder: !descendant:*.mp3
by NotNull
Mon Mar 25, 2024 3:37 pm
Forum: Support
Topic: Excluding external drive
Replies: 3
Views: 1192

Re: Excluding external drive

That list can be found in Menu => Tools => Options => Indexes => NTFS

In other words, this location:
jsampson45 wrote: Mon Mar 25, 2024 10:27 am I selected "Indexes / NTFS" and a window mentions "Windows (C:)" and "Iomega HDD (D:)"
by NotNull
Mon Mar 25, 2024 3:34 pm
Forum: Everything 1.5 Alpha
Topic: Find Duplicates
Replies: 41
Views: 17329

Re: Find Duplicates

can you find duplicates with multiple properties Yes, as described in the opening post: To find files/folders with multiple duplicated properties: Include the following in your search: dupe:<property-list> where <property-list> is a semicolon (;) delimited list of property names. also can you autom...
by NotNull
Mon Mar 25, 2024 1:38 pm
Forum: Support
Topic: Excluding external drive
Replies: 3
Views: 1192

Re: Excluding external drive

- Select your D-drive in the Local NTFS volumes: list
- Deselect Include in database
- Press the OK button.
- Let Everything make the necessary changes to its database
- Done.
by NotNull
Mon Mar 25, 2024 1:33 pm
Forum: Support
Topic: Everything Using a Large Amount of RAM
Replies: 15
Views: 50330

Re: Everything Using a Large Amount of RAM

What about content indexing? (Tools => Options => Indexes => Content) That information will be loaded in RAM too. Please post some debug information: - Go to Menu => Tools => Debug => Statistics . - Post the first section -- " Database " -- here (the text can be selected and copied)
by NotNull
Sat Mar 23, 2024 8:55 pm
Forum: Everything 1.5 Alpha
Topic: Feature Request:Double clicking on a folder to navigate to that folder
Replies: 14
Views: 3378

Re: Feature Request:Double clicking on a folder to navigate to that folder

I left "Open Path" as it was, so that it can be used to open the folder in Explorer if ever needed. Whatever suits you best. Explorer can still be opened through the context menu btw: - Open files/folders in Explorer through the context menu (Explore / Explore Path) From what I looked at ...
by NotNull
Sat Mar 23, 2024 8:08 pm
Forum: Everything 1.5 Alpha
Topic: Feature Request:Double clicking on a folder to navigate to that folder
Replies: 14
Views: 3378

Re: Feature Request:Double clicking on a folder to navigate to that folder

To test (preferably in a new Everything instance): Go to Menu => Tools => Options => Conetxt Menu Open (Folders) => $exploreineverything("%1") Open Path => $exploreineverything("%1") Explore : Show this item Explore Path : Show this item Click the OK button Result : - double-clic...
by NotNull
Sat Mar 23, 2024 3:28 pm
Forum: Everything 1.5 Alpha
Topic: Folder shown in Everything cannot be accessed
Replies: 1
Views: 633

Re: Folder shown in Everything cannot be accessed

Everything sees all files and folders thanks to the low-level that it sees the filesystem. Some of these folders are not accessible as a regular user, for example the C:\users\<username> folders of other users or some Windows folders like C:\Windows\System32\config\ , C:\Windows\SystemTemp\ and hund...
by NotNull
Fri Mar 22, 2024 4:06 pm
Forum: Everything 1.5 Alpha
Topic: Is it possible to match all but in letters order
Replies: 2
Views: 648

Re: Is it possible to match all but in letters order

Maybe
*t*i*o*
? (with Match Path disabled)

(sounds like I am overlooking some complication?)
by NotNull
Thu Mar 21, 2024 5:00 pm
Forum: Development, plugins and third party software
Topic: Which software has Everything integrated?
Replies: 58
Views: 200185

Re: Which software has Everything integrated?

Its major disadvantage is that it's overpriced, and they want money for each major upgrade. Also irrelevant for this topic: Directory Opus has changed it's licensing model as there were 7+ years between major versions. You now buy a version and get updates for a year. After that, you pay per year f...
by NotNull
Thu Mar 21, 2024 4:39 pm
Forum: Everything 1.5 Alpha
Topic: ❓ Content search brings 0 results
Replies: 7
Views: 1099

Re: ❓ Content search brings 0 results

Please uncheck the Exclude not content indexed in the dialog of your screenshot. If checked, Everything will Exclude files and folders with the not content indexed attribute The not content indexed attribute will be set (or not) by Windows Search. Unchecking Exclude not content indexed will make Eve...
by NotNull
Thu Mar 21, 2024 4:31 pm
Forum: Everything 1.5 Alpha
Topic: [Suggestion] Do not show Close button on tabs
Replies: 11
Views: 1414

Re: [Suggestion] Do not show Close button on tabs

kazzybash wrote: Wed Mar 20, 2024 10:25 pm Sorry fro addressing you wrongly NotNull!
No problem! (just funny)
by NotNull
Wed Mar 20, 2024 7:01 pm
Forum: Everything 1.5 Alpha
Topic: query first 'n' identical characters in a foldername
Replies: 10
Views: 1020

Re: query first 'n' identical characters in a foldername

that still returns (for example) B..0499965078 (which I don't think he wants) There is a C.. 04999 65078.3 folder, so I would expect B.. to be included (the second variation "ignores" the letter-dot-dot part at the beginning and focuses on the first 5 numbers after that to decide which fo...
by NotNull
Wed Mar 20, 2024 6:53 pm
Forum: Development, plugins and third party software
Topic: Which software has Everything integrated?
Replies: 58
Views: 200185

Re: Which software has Everything integrated?

Xavierarmand wrote: Sat Mar 16, 2024 3:56 pm DIRECTORY OPUS!!! https://www.gpsoft.com.au
How could I forget to add this one :o :shock: (I even use it myself ... )

Very well done integration of Everything.
by NotNull
Wed Mar 20, 2024 6:38 pm
Forum: Everything 1.5 Alpha
Topic: query first 'n' identical characters in a foldername
Replies: 10
Views: 1020

Re: query first 'n' identical characters in a foldername

Did you test with the files provided by @kazzybash in testtree.zip?

EDIT: made a typo: a "z" fell off. ( [a-] instead of [a-z] ) Please try again.
(thanks for testing, btw!)
by NotNull
Wed Mar 20, 2024 6:34 pm
Forum: Everything 1.5 Alpha
Topic: [Suggestion] Do not show Close button on tabs
Replies: 11
Views: 1414

Re: [Suggestion] Do not show Close button on tabs

kazzybash wrote: Tue Mar 19, 2024 9:58 pm thanks therube
And now I have an identity crisis ... ;)
by NotNull
Wed Mar 20, 2024 6:30 pm
Forum: Support
Topic: Folder that has file that matches content.
Replies: 7
Views: 1359

Re: Folder that has file that matches content.

And yet another way ... : - Search for "Z:\Files\Music\" DEPTH:5 *.log CONTENT:"Exact Text" - Select all resultlist entries (CTRL + A) - Copy all entries to the clipboard (CTRL + C) - Type the following in the (empty) search bar: child-filelist1: - Press F2 to edit this filelist ...
by NotNull
Wed Mar 20, 2024 6:21 pm
Forum: Everything 1.5 Alpha
Topic: query first 'n' identical characters in a foldername
Replies: 10
Views: 1020

Re: query first 'n' identical characters in a foldername

Lot clearer now, but not entirely ... When you want A..12 345678 and A..12 876543 to be considered "equal", but not B..12 345678: "C:\your\starting folder\" folder:regex:"^(.{5})" startwith:sibling-folder:$1: sort:path (this is your actual request, but I suspect you're ...
by NotNull
Wed Mar 20, 2024 5:19 pm
Forum: Bug report
Topic: Small bug about selecting
Replies: 4
Views: 1234

Re: Small bug about selecting

Some applications dont update the current file -- testtesttest1.ove in your case -- but instead delete the original old one first and then save the new text. In that case, Everything will see this as a new file (which it in fact is) and can no longer focus the old one. Instead the focus in the resul...
by NotNull
Fri Mar 15, 2024 7:20 pm
Forum: Everything 1.5 Alpha
Topic: Help with understanding how 'ommit-results' works
Replies: 3
Views: 315

Re: Help with understanding how 'ommit-results' works

Try it with omit-results: instaed of ommit-results: (1 M vs, 2)
by NotNull
Wed Mar 13, 2024 9:48 pm
Forum: Everything 1.5 Alpha
Topic: Restrict specific search to the top folder level
Replies: 9
Views: 507

Re: Restrict specific search to the top folder level

This might work:

Code: Select all

pic:   "K:\Bilder\Fotografie\*\*" 
If not, take take a second (or 100!) to formulate way more precise what pattern describes your files/folders as this turns out to be completely different from what you initially asked for.


P.S. You didn't answer my questions ..
by NotNull
Wed Mar 13, 2024 9:44 pm
Forum: Everything 1.5 Alpha
Topic: Permanently exclude subfolders from search results
Replies: 6
Views: 405

Re: Permanently exclude subfolders from search results

Moved to Everything 1.5 forum Please post your 1.5 related questions in that forum. Not sure what you are after (where do you press th Space key or use the openwith option), but if the following gets the layout you want: there are options ... Run the following command from the Command Prompt: "...
by NotNull
Wed Mar 13, 2024 9:37 pm
Forum: Everything 1.5 Alpha
Topic: Show Search Filter in Title Bar
Replies: 8
Views: 857

Re: Show Search Filter in Title Bar

It would be a great QoL if everything shows what it is searching for (audio, images, document) on the title bar so it's obvious at a glance. The easiest way would be to check the statusbar. The active filter will be shown here (if not the Everything filter). (most important info will be shown in th...
by NotNull
Tue Mar 12, 2024 10:29 pm
Forum: Everything 1.5 Alpha
Topic: Restrict specific search to the top folder level
Replies: 9
Views: 507

Re: Restrict specific search to the top folder level

Just noticed that I skipped a quote in the regex: version. Repaired in the original post. Let's approach this step-by-step; your filter will come later on. - Make sure the Everything filter is enabled - Make sure no other serach modifiers are enabled under MEnu=> Search (like Regular Expressions, Ma...
by NotNull
Tue Mar 12, 2024 10:21 pm
Forum: Everything 1.5 Alpha
Topic: Is it possible to exclusively open a window/tab with a setting enabled/disabled?
Replies: 21
Views: 1184

Re: Is it possible to exclusively open a window/tab with a setting enabled/disabled?

As I mentioned earlier, although the "config-value" method works well for the "omit_results" setting, it does not work for all settings. Such as, "preview_visible". config-value changes the setting in the INI file ("everything.ini"), so that is a more definit...
by NotNull
Tue Mar 12, 2024 8:16 pm
Forum: Suggestions
Topic: Preview Panel, show selected folders contents
Replies: 13
Views: 1959

Re: Preview Panel, show selected folders contents

.. and htmlview (lists files/folders, without the size calculation stuff)

For others: Both are viewers (for Total Commander), so unfortunately not usable in the preview panes of Explorer and Everything.